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

10 lines
150 B
Ruby

control "winrm" do
title "WinRM"
desc "Checks if the port 5985 is listening"
describe port('5985') do
it { should be_listening }
end
end