metasploitable3/chef/cookbooks/metasploitable/test/windows/backdoors.rb
2017-07-06 08:55:40 +05:30

17 lines
416 B
Ruby

control "backdoors" do
title "Backdoors"
desc "Check if the backdoors are correctly placed. Installation script present at: /scripts/installs/install_backdoors.bat"
describe file('C:\\inetpub\\wwwroot\\caidao.asp') do
it { should exist }
end
describe file('C:\\wamp\\www\\mma.php') do
it { should exist }
end
describe file('C:\\wamp\\www\\meterpreter.php') do
it { should exist }
end
end