Files
2019-06-10 09:51:32 +10:00

47 lines
1.3 KiB
Ruby

##
# This file is part of WhatWeb and may be subject to
# redistribution and commercial restrictions. Please see the WhatWeb
# web site for more information on licensing and terms of use.
# https://www.morningstarsecurity.com/research/whatweb
##
Plugin.define do
name "AMX-Mod-X"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2010-09-04
"Andrew Horton", # v0.2 # 2016-04-17 # Added website parameter.
]
version "0.2"
description "AMX Mod X is a versatile Half-Life metamod plugin which is targetted toward server administration."
website "http://www.amxmodx.org/"
# Dorks #
dorks [
'ext:cfg "Linux users may encounter problems if they specify"'
]
# 4 results for ext:cfg "Linux users may encounter problems if they specify" @ 2010-09-04
# Matches #
matches [
{ :text=>'// *NOTE* amx_sql_type specifies the DEFAULT database type which admin.sma will use.' },
]
# Grab mySQL username, server and database details
passive do
m=[]
if @body =~ /amx_sql_host[\s]+"([^\"]*)"/ and @body =~ /amx_sql_user[\s]+"([^\"]+)"/ and @body =~ /amx_sql_pass[\s]+"([^\"]*)"/
version=@body.scan(/amx_sql_user[\s]+"([^\"]+)"/)[0][0] + ":" + @body.scan(/amx_sql_pass[\s]+"([^\"]*)"/)[0][0] + "@" + @body.scan(/amx_sql_host[\s]+"([^\"]+)"/)[0][0]
m << {:version=>version}
end
m
end
end