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

27 lines
685 B
Ruby
Raw Normal View History

2017-07-06 05:25:40 +02:00
control "manageengine" do
title "ManageEngine"
desc "Check if ManageEngine is running. Installation script is available at /scripts/installs/install_manageengine.bat"
2017-07-19 14:09:42 +02:00
describe service('MEDCServerComponent-Apache') do
it { should be_installed }
it { should be_enabled }
it { should be_running }
2017-07-06 05:25:40 +02:00
end
2017-07-19 14:09:42 +02:00
describe service('MEDC Server Component - Notification Server') do
it { should be_installed }
it { should be_enabled }
it { should be_running }
2017-07-06 05:25:40 +02:00
end
2017-07-19 14:09:42 +02:00
describe service('DesktopCentralServer') do
it { should be_installed }
it { should be_enabled }
it { should be_running }
2017-07-06 05:25:40 +02:00
end
2017-07-19 14:09:42 +02:00
describe port('8020') do
it { should be_listening }
2017-07-06 05:25:40 +02:00
end
end