142 lines
4.0 KiB
Ruby
142 lines
4.0 KiB
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
class MetasploitModule < Msf::Auxiliary
|
|
include Msf::Exploit::Remote::Postgres
|
|
include Msf::Auxiliary::Scanner
|
|
include Msf::Auxiliary::Report
|
|
include Msf::OptionalSession::PostgreSQL
|
|
|
|
# Creates an instance of this module.
|
|
def initialize(info = {})
|
|
super(
|
|
update_info(
|
|
info,
|
|
'Name' => 'PostgreSQL Version Probe',
|
|
'Description' => %q{
|
|
Enumerates the version of PostgreSQL servers.
|
|
},
|
|
'Author' => [ 'todb' ],
|
|
'License' => MSF_LICENSE,
|
|
'References' => [
|
|
[ 'URL', 'https://www.postgresql.org/' ]
|
|
],
|
|
'Notes' => {
|
|
'Reliability' => UNKNOWN_RELIABILITY,
|
|
'Stability' => UNKNOWN_STABILITY,
|
|
'SideEffects' => UNKNOWN_SIDE_EFFECTS
|
|
}
|
|
)
|
|
)
|
|
|
|
register_options([ ]) # 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)
|
|
self.postgres_conn = session.client if session
|
|
user = datastore['USERNAME']
|
|
pass = postgres_password
|
|
do_fingerprint(user, pass, datastore['DATABASE'])
|
|
end
|
|
|
|
# Alias for RHOST
|
|
def rhost
|
|
postgres_conn&.peerhost || datastore['RHOST']
|
|
end
|
|
|
|
# Alias for RPORT
|
|
def rport
|
|
postgres_conn&.peerport || datastore['RPORT']
|
|
end
|
|
|
|
def report_cred(opts)
|
|
service_data = {
|
|
address: opts[:ip],
|
|
port: opts[:port],
|
|
service_name: opts[:service_name],
|
|
protocol: 'tcp',
|
|
workspace_id: myworkspace_id
|
|
}
|
|
|
|
credential_data = {
|
|
origin_type: :service,
|
|
module_fullname: fullname,
|
|
username: opts[:user],
|
|
private_data: opts[:password],
|
|
private_type: :password
|
|
}.merge(service_data)
|
|
|
|
login_data = {
|
|
core: create_credential(credential_data),
|
|
status: Metasploit::Model::Login::Status::UNTRIED,
|
|
proof: opts[:proof]
|
|
}.merge(service_data)
|
|
|
|
create_credential_login(login_data)
|
|
end
|
|
|
|
def do_fingerprint(user = nil, pass = nil, database = nil)
|
|
begin
|
|
msg = "#{rhost}:#{rport} Postgres -"
|
|
password = pass || postgres_password
|
|
vprint_status("#{msg} Trying username:'#{user}' with password:'#{password}' against #{rhost}:#{rport} on database '#{database}'") unless postgres_conn
|
|
result = postgres_fingerprint(
|
|
:db => database,
|
|
:username => user,
|
|
:password => password
|
|
)
|
|
if result[:auth]
|
|
vprint_good "#{rhost}:#{rport} Postgres - Logged in to '#{database}' with '#{user}':'#{password}'" unless session
|
|
print_status "#{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
|
|
vprint_status "#{rhost}:#{rport} Postgres - Authentication Error Fingerprint: #{result[:unknown]}"
|
|
print_status "#{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_cred(
|
|
ip: rhost,
|
|
port: rport,
|
|
service_name: 'postgres',
|
|
user: user,
|
|
password: password,
|
|
proof: "postgres_conn = #{self.postgres_conn.inspect}"
|
|
)
|
|
end
|
|
|
|
if result[:unknown]
|
|
report_note(
|
|
:host => rhost,
|
|
:proto => 'tcp',
|
|
:sname => 'postgres',
|
|
:port => rport,
|
|
:ntype => 'postgresql.fingerprint',
|
|
:data => { :unknown_pre_auth_fingerprint => result[:unknown] }
|
|
)
|
|
end
|
|
|
|
# Logout
|
|
postgres_logout if self.postgres_conn && session.blank?
|
|
rescue Rex::ConnectionError
|
|
vprint_error "#{rhost}:#{rport} Connection Error: #{$!}"
|
|
return :done
|
|
end
|
|
end
|
|
end
|