metasploitable3/chef/cookbooks/metasploitable/test/windows/iis.rb
2017-07-19 18:22:41 +05:30

9 lines
234 B
Ruby

control "iis" do
title "IIS HTTP"
desc "Checks if the IIS server has started and listening on port 80. Setup script available at /scripts/installs/setup_iis.bat"
describe port('3389') do
it { should be_listening }
end
end