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

14 lines
290 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
2017-07-07 14:20:21 +02:00
2017-07-19 14:52:41 +02:00
describe port('21') do
it { should be_listening }
2017-07-07 14:20:21 +02:00
end
2017-07-06 05:25:40 +02:00
end