发新话题
打印

[转载]SPIDynamics WebInspect Cross-Application Scripting

[转载]SPIDynamics WebInspect Cross-Application Scripting

原始连接:http://www.security.nnov.ru/articles/xas/

Summary
SPIDynamics WebInspect is "powerful security assessment tool for Web application".SPIDynamics WebInspect has been found to be vulnerable to XAS that could lead to remote code execution.

Credit:
The information has been provided by QQLan.
The original article can be found at: http://www.security.nnov.ru/articles/xas/

Details
As many applications WebInspect uses external programs and Windows components for different purposes. It is very common to use COM object of Internet Explorer for render reports and displays data. WebInspect in not an exception.

When reports is generated, some parts of scanned site (for example URLs) are included into HTML file (file://C:\Program Files\SPIDynamics\WebInspect\Working\vulnerability.htm), which opens in IE. Because WebInspect doesn't properly normalize displayed data, part of URL or other data can be parsed by IE as DHTML, for example JavaScript, and leads to code execution on the computer where scanner is installed.

Analysis:
Successful exploitation allows remote attackers to execute arbitrary script code on the host, where scanner is installed with privileges of user who launch the scanner. Victim should scan site and openreport.

Typically scanner runs on administrator's or security auditor's box with a lot of interesting data. It possibly runs under high-privileged account.

Attacker should create specially crafted site with vulnerability to be displayed in report. "Vulnerable" URL should include script code. Example of such report is a "Hidden Form Value Vulnerability ID: 4727".

By default script is executed in Internet Security Zone of IE (not sure). But with little effort attacker can use predictable resource location to bypass restrictions of Internet Zone and execute script in "My Computer" security zone.

Example:
< script>window.open(&#39;file://C:\\Program Files\\SPIDynamics\\WebInspect\\Working\\vulnerability.htm&#39;)</script>

Attacker can use social engineering to install full featured application, for example new version of "SPIDynamics Reported ActiveX".

Proof of Concept:
Following ASP file can be used to reproduce vulnerability:
<*****************iisstart.asp***********************>
复制内容到剪贴板
代码:
< HTML>< HEAD>< BODY>
<%
if request.querystring<>"" then
response.write request.querystring
end if
%>
< form action="script>/<script>window.open(%27file://C:\\Program Files\\SPIDynamics\\WebInspect\\Working\\vulnerability.htm%27)</script>" method=get> Please login:< br>
< input type=submit value="Login"><br> < input type=hidden name=&#39;hidden&#39; value="Login">< br> </form>
< /BODY>< /HTML>
</*****************iisstart.asp***********************>

You should change default error page to iisstart.asp.

Disclosure Timeline:
04/15/2005 - Initial vendor notification
04/15/2005 - Initial vendor response

Workaround:
Disable Active Scripting in My Computer Zone: http://support.microsoft.com/default.aspx?scid=kb;en;833633.
曾几何时,有人对我说:装B遭雷劈。我说:去你妈的。于是,这个人又对我说:如果再说脏话,上帝会惩罚你的。我说:我操上帝。结论:彪悍的人生不需要上帝。

TOP

发新话题