2009-05-01 22:01:21 +00:00
|
|
|
##
|
2010-04-30 08:40:19 +00:00
|
|
|
# $Id$
|
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2009-05-01 22:01:21 +00:00
|
|
|
# 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-05-01 22:01:21 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
2010-04-30 08:40:19 +00:00
|
|
|
include Msf::Auxiliary::Report
|
2009-05-01 22:01:21 +00:00
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
super(
|
|
|
|
'Name' => 'Oracle Enterprise Manager Control SID Discovery',
|
|
|
|
'Description' => %q{
|
|
|
|
This module makes a request to the Oracle Enterprise Manager Control Console
|
2010-09-20 08:06:27 +00:00
|
|
|
in an attempt to discover the SID.
|
2009-05-01 22:01:21 +00:00
|
|
|
},
|
2009-07-23 02:55:51 +00:00
|
|
|
'Version' => '$Revision$',
|
2009-05-01 22:01:21 +00:00
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'URL', 'http://dsecrg.com/files/pub/pdf/Different_ways_to_guess_Oracle_database_SID_(eng).pdf' ],
|
|
|
|
],
|
|
|
|
'Author' => [ 'MC' ],
|
|
|
|
'License' => MSF_LICENSE
|
|
|
|
)
|
|
|
|
|
|
|
|
register_options([Opt::RPORT(1158),], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_host(ip)
|
|
|
|
begin
|
|
|
|
res = send_request_raw({
|
|
|
|
'uri' => '/em/console/logon/logon',
|
|
|
|
'method' => 'GET',
|
|
|
|
}, 5)
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2011-11-09 08:51:47 +00:00
|
|
|
return if not res
|
2009-05-01 22:01:21 +00:00
|
|
|
if (res.code == 200)
|
|
|
|
sid = res.body.scan(/Login to Database:(\w+)/)
|
|
|
|
report_note(
|
|
|
|
:host => ip,
|
2011-11-09 08:51:47 +00:00
|
|
|
:port => datastore['RPORT'],
|
2009-05-01 22:01:21 +00:00
|
|
|
:proto => 'tcp',
|
2011-11-09 08:51:47 +00:00
|
|
|
:type => 'oracle_sid',
|
|
|
|
:data => "#{sid}",
|
|
|
|
:update => :unique_data
|
2009-05-01 22:01:21 +00:00
|
|
|
)
|
|
|
|
print_status("Discovered SID: '#{sid}' for host #{ip}")
|
|
|
|
else
|
|
|
|
print_error("Unable to retrieve SID for #{ip}...")
|
|
|
|
end
|
|
|
|
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
|
|
|
|
rescue ::Timeout::Error, ::Errno::EPIPE
|
2010-04-30 08:40:19 +00:00
|
|
|
end
|
2009-05-01 22:01:21 +00:00
|
|
|
end
|
|
|
|
end
|