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

15 lines
344 B
Ruby
Raw Normal View History

2017-07-06 05:25:40 +02:00
control "mysql" do
title "MySQL"
desc "Check if MySQL is running properly. Installation script available at /scripts/installs/setup_mysql.bat"
2017-07-19 14:12:49 +02:00
describe service('wampmysqld') 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:12:49 +02:00
describe port('3306') do
it { should be_listening }
2017-07-06 05:25:40 +02:00
end
end