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

22 lines
495 B
Ruby
Raw Normal View History

2017-07-06 05:25:40 +02:00
control "wordpress" do
title "Check WordPress Installation"
desc "Checks the wordpress installation. Setup script available in /scripts/installs/install_wordpress.bat"
describe file('C:\\Program Files\\wordpress') do
it { should exist }
end
describe file('C:\\Program Files\\wordpress\\update_ip.ps1') do
it { should exist }
end
describe file('C:\\wamp\\www\\wordpress') do
it { should exist }
end
2017-07-07 14:20:21 +02:00
2017-07-19 14:52:41 +02:00
describe port('8585') do
it { should be_listening }
2017-07-07 14:20:21 +02:00
end
2017-07-06 05:25:40 +02:00
end