51 lines
1004 B
Ruby
51 lines
1004 B
Ruby
##
|
|
# $Id$
|
|
##
|
|
|
|
##
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
|
# Framework web site for more information on licensing and terms of use.
|
|
# http://metasploit.com/projects/Framework/
|
|
##
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
include Msf::Exploit::Remote::MSSQL
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
def initialize
|
|
super(
|
|
'Name' => 'MSSQL Ping Utility',
|
|
'Version' => '$Revision$',
|
|
'Description' => 'This module simply queries the MSSQL instance for information.',
|
|
'Author' => 'MC',
|
|
'License' => MSF_LICENSE
|
|
)
|
|
|
|
deregister_options('RPORT', 'RHOST')
|
|
end
|
|
|
|
|
|
def run_host(ip)
|
|
|
|
begin
|
|
|
|
info = mssql_ping(2)
|
|
if (info['ServerName'])
|
|
print_status("SQL Server information for #{ip}:")
|
|
info.each_pair { |k,v|
|
|
print_status(" #{k + (" " * (15-k.length))} = #{v}")
|
|
}
|
|
end
|
|
|
|
rescue Errno::EACCES
|
|
end
|
|
end
|
|
end
|
|
|