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

17 lines
427 B
Ruby
Raw Normal View History

2017-07-06 05:25:40 +02:00
control "axis2" do
title "Axis 2"
desc "Check if Axis 2 webapp is installed. Installation script available at /scripts/installs/setup_axis2.bat"
describe file('C:\\axis2') do
it { should_not exist }
end
describe file('C:\\Program Files\\Apache Software Foundation\\tomcat\\apache-tomcat-8.5.12\\webapps\\axis2') do
it { should exist }
end
2017-07-19 14:52:41 +02:00
describe port('8282') do
it { should be_listening }
2017-07-06 05:25:40 +02:00
end
end