2010-02-02 01:40:48 +00:00
|
|
|
##
|
|
|
|
# $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/framework/
|
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
|
|
|
include Msf::Exploit::Remote::Postgres
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2010-02-02 01:40:48 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'PostgreSQL Server Generic Query',
|
|
|
|
'Description' => %q{
|
|
|
|
This module will allow for simple SQL statements to be executed against a
|
|
|
|
PostgreSQL instance given the appropiate credentials.
|
|
|
|
},
|
|
|
|
'Author' => [ 'todb' ],
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'URL', 'www.postgresql.org' ]
|
2010-02-02 21:02:12 +00:00
|
|
|
],
|
|
|
|
'Version' => '$Revision$'
|
2010-02-02 01:40:48 +00:00
|
|
|
))
|
|
|
|
|
2010-04-30 08:40:19 +00:00
|
|
|
register_options( [ ], self.class) # None needed.
|
2010-02-02 21:02:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def rhost
|
|
|
|
datastore['RHOST']
|
|
|
|
end
|
|
|
|
|
|
|
|
def rport
|
|
|
|
datastore['RPORT']
|
2010-02-02 01:40:48 +00:00
|
|
|
end
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2010-02-02 01:40:48 +00:00
|
|
|
def run
|
2010-02-08 16:43:44 +00:00
|
|
|
ret = postgres_query(datastore['SQL'],datastore['RETURN_ROWSET'])
|
|
|
|
verbose = datastore['VERBOSE']
|
|
|
|
case ret.keys[0]
|
|
|
|
when :conn_error
|
|
|
|
print_error "#{rhost}:#{rport} Postgres - Authentication failure, could not connect."
|
|
|
|
when :sql_error
|
|
|
|
print_error "#{rhost}:#{rport} Postgres - #{ret[:sql_error]}"
|
|
|
|
when :complete
|
2010-04-30 08:40:19 +00:00
|
|
|
print_good "#{rhost}:#{rport} Postgres - Command complete." if verbose
|
2010-02-08 16:43:44 +00:00
|
|
|
end
|
2010-02-02 01:40:48 +00:00
|
|
|
postgres_logout if self.postgres_conn
|
|
|
|
end
|
|
|
|
end
|