漏洞名称 | Windows本地提权漏洞 |
---|---|
漏洞编号 | CVE-2021-1732 |
危害等级 | 高危 |
CVSS评分 | 7.8 |
漏洞类型 | 二进制漏洞 |
漏洞厂商 | 微软 |
漏洞组件 | 操作系统 |
受影响版本 | Windows Server, version 20H2 (Server Core Installation) Windows 10 Version 20H2 for ARM64-based Systems Windows 10 Version 20H2 for 32-bit Systems Windows 10 Version 20H2 for x64-based Systems Windows Server, version 2004 (Server Core installation) Windows 10 Version 2004 for x64-based Systems Windows 10 Version 2004 for ARM64-based Systems Windows 10 Version 2004 for 32-bit Systems Windows Server, version 1909 (Server Core installation) Windows 10 Version 1909 for ARM64-based Systems Windows 10 Version 1909 for x64-based Systems Windows 10 Version 1909 for 32-bit Systems Windows Server 2019 (Server Core installation) Windows Server 2019 Windows 10 Version 1809 for ARM64-based Systems Windows 10 Version 1809 for x64-based Systems Windows 10 Version 1809 for 32-bit Systems Windows 10 Version 1803 for ARM64-based Systems Windows 10 Version 1803 for x64-based Systems |
漏洞概述 | CVE-2021-1732 是蔓灵花(BITTER)APT 组织在某次被披露的攻击行动中使用的 0day 漏洞,该高危漏洞可以在本地将普通用户进程的权限提升至最高的 SYSTEM 权限。 |
漏洞发生在Windows 图形驱动win32kfull!NtUserCreateWindowEx中。
当驱动win32kfull.sys调用NtUserCreateWindowEx创建窗口时会判断tagWND->cbWndExtra(窗口实例额外分配内存数),该值不为空时调用win32kfull!xxxClientAllocWindowClassExtraBytes函数回调用户层user32.dll!__xxxClientAllocWindowClassExtraBytes创建内存,分配后的地址使用NtCallbackReturn函数修正堆栈后重新返回内核层并保存并继续运行,而当tagWND->flag值包含0x800属性时候对该值采用offset 寻址。
使用NtUserConsoleControl修改flag包含0x800属性。
总的来说,漏洞是由win32kfull!xxxCreateWindowEx函数内一处由用户态回调导致的flag位设置与对应偏移设置不同步所导致的。
Linux操作系统(kali)
Windows 10 操作系统(1909)
https://github.com/Ascotbe/Kernelhub(利用工具)
去https://msdn.itellyou.cn/下载1909镜像然后进行安装即可
创建一个普通的用户并且登录
运行exe文件,执行whoami命令,发现成功由普通用户权限提升到了系统权限
CVE-2021-1732.exe "whoami"
利用该工具,我们可以把普通用户test加入到管理员组中,来达到提权管理员的目的
CVE-2021-1732.exe "net localgroup Administrators test /add"
查看是否成功加入到管理员用户组中,发现加入成功
net user test
由于在运行脚本的时候,是提权到系统权限的,所以我们还可以来运行MSF生成的后门文件,来达到不需要其他提权方式就达到获取系统权限的shell效果。
CVE-2021-1732.exe 622.exe(后门文件)
)
打微软官方的补丁https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-1732