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

9 lines
279 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"
describe command('netstat -aob | findstr :3389') do
its('stdout') { should match ("LISTENING") }
end
end