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

17 lines
434 B
Ruby

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
describe port('3000') do
it { should be_listening }
end
end