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

10 lines
150 B
Ruby
Raw Normal View History

2017-07-07 15:16:43 +02:00
control "winrm" do
title "WinRM"
desc "Checks if the port 5985 is listening"
2017-07-19 14:52:41 +02:00
describe port('5985') do
it { should be_listening }
2017-07-07 15:16:43 +02:00
end
end