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

17 lines
434 B
Ruby
Raw Normal View History

2017-07-06 05:25:40 +02:00
control "devkit" do
title "Rails Server - DevKit"
desc "Check if the rails server has installed along with devkit. Check the installation script at /scripts/installs/install_devkit.bat"
describe file('C:\\Program Files\\Rails_Server') do
it { should exist }
end
describe file('C:\\Program Files\\Rails_Server\\devkit') do
it { should exist }
end
2017-07-19 14:52:41 +02:00
describe port('3000') do
it { should be_listening }
2017-07-06 05:25:40 +02:00
end
end