metasploitable3/chef/cookbooks/metasploitable/test/windows/ftp_site.rb

9 lines
227 B
Ruby
Raw Normal View History

2017-07-06 05:25:40 +02:00
control "setup-ftp-site" do
title "Setup FTP Site"
desc "Check if the FTP site is correctly configured"
describe file('C:\\Windows\\System32\\inetsrv\\config\\applicationHost.config') do
it { should exist }
end
end