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

21 lines
589 B
Ruby

control "rails_service" do
title "Rails Service"
desc "Check if Rails service is correctly installed. Setup script available at /scripts/installs/install_rails_service.bat"
describe file('C:\\Program Files\\Rails_Server\\Gemfile') do
it { should exist }
end
describe file('C:\\Program Files\\Rails_Server\\start_rails_server.bat') do
it { should exist }
end
describe command('netstat -aob | findstr :3000') do
its('stdout') { should match "LISTENING" }
end
describe command('schtasks /Query /tn rails') do
its('stdout') { should match "Ready" }
end
end