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

9 lines
234 B
Ruby
Raw Normal View History

2017-07-07 15:16:43 +02:00
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"
2017-07-19 14:52:41 +02:00
describe port('3389') do
it { should be_listening }
2017-07-07 15:16:43 +02:00
end
end