## # $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 include Msf::Auxiliary::Scanner include Msf::Auxiliary::Report # Creates an instance of this module. def initialize(info = {}) super(update_info(info, 'Name' => 'PostgreSQL Login Utility', 'Description' => %q{ Enumerates the verion of PostgreSQL servers. }, 'Author' => [ 'todb' ], 'License' => MSF_LICENSE, 'References' => [ [ 'URL', 'www.postgresql.org' ] ], 'Version' => '$Revision$' # 2009-02-05 )) register_options([ ], self.class) # None needed. deregister_options('SQL', 'RETURN_ROWSET') end # Loops through each host in turn. Note the current IP address is both # ip and datastore['RHOST'] def run_host(ip) user = datastore['USERNAME'] pass = postgres_password do_fingerprint(user,pass,datastore['DATABASE'],datastore['VERBOSE']) end # Alias for RHOST def rhost datastore['RHOST'] end # Alias for RPORT def rport datastore['RPORT'] end def do_fingerprint(user=nil,pass=nil,database=nil,verbose=false) begin msg = "#{rhost}:#{rport} Postgres -" password = pass || postgres_password print_status("#{msg} Trying username:'#{user}' with password:'#{password}' against #{rhost}:#{rport} on database '#{database}'") if verbose result = postgres_fingerprint( :db => database, :username => user, :password => password ) if result[:auth] print_good "#{rhost}:#{rport} Postgres - Logged in to '#{database}' with '#{user}':'#{password}'" if verbose print_good "#{rhost}:#{rport} Postgres - Version #{result[:auth]} (Post-Auth)" elsif result[:preauth] print_good "#{rhost}:#{rport} Postgres - Version #{result[:preauth]} (Pre-Auth)" else # It's something we don't know yet print_status "#{rhost}:#{rport} Postgres - Authentication Error Fingerprint: #{result[:unknown]}" if datastore['VERBOSE'] print_error "#{rhost}:#{rport} Postgres - Version Unknown (Pre-Auth)" end # Reporting report_service( :host => rhost, :port => rport, :name => "postgres", :info => result.values.first ) if self.postgres_conn report_auth_info( :host => rhost, :proto => "postgres", :user => user, :pass => password, :target_host => rhost, :target_port => rport ) end if result[:unknown] report_note( :host => rhost, :proto => 'postgres', :port => rport, :data => "Unknown Pre-Auth fingerprint: #{result[:unknown]}" ) end # Logout postgres_logout rescue Rex::ConnectionError print_error "#{rhost}:#{rport} Connection Error: #{$!}" if datastore['VERBOSE'] return :done end end end