Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2025-59501 — CVE-2025-59501 POC 代码 | Kitploit
工具/GitHubGitHub/garrettfoster13/cve-2025-59501
权限提升漏洞分析漏洞利用渗透测试云安全身份与访问管理 (IAM)身份验证红队
GitHubgarrettfoster13/cve-2025-59501

CVE-2025-59501

CVE-2025-59501 POC 代码

查看仓库
2519个月前Kitploit 审核通过

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2025-59501

利用SCCM的AdminService API(当启用了Entra ID集成时)提权为完全管理员并接管SCCM层级架构的POC。更多细节见这篇博客。

依赖

uv

安装

root@kitploit:~
git clone https://github.com/garrettfoster13/CVE-2025-59501.git
cd CVE-2025-59501/
uv sync

使用方法

该工具包含两个模块:token 和 admin

root@kitploit:~
➜  CVE-2025-59501 git:(main) ✗ uv run poc.py
usage: poc.py [-h] {token,admin} ...

POC to abuse CVE-2025-59501 by @unsigned_sh0rt

positional arguments:
  {token,admin}
    token        Get AdminService access token
    admin        Add user as SCCM admin

options:
  -h, --help     show this help message and exit

token 模块用于以指定的 UPN 用户(Entra/AD 用户)身份请求访问令牌

root@kitploit:~
➜  CVE-2025-59501 git:(main) ✗ uv run poc.py token -h
usage: poc.py token [-h] -u USERNAME [-p PASSWORD] -c CLIENT_ID -t TENANT_ID [-s SCOPE]

options:
  -h, --help            show this help message and exit
  -u, --username USERNAME
                        username
  -p, --password PASSWORD
                        password
  -c, --client-id CLIENT_ID
                        azure app clientid
  -t, --tenant-id TENANT_ID
                        entra tenant ID
  -s, --scope SCOPE     resource URI/Scope

admin 模块使用令牌向 AdminService API 进行身份验证,并将目标用户账户添加为 SCCM 管理员

root@kitploit:~
➜  CVE-2025-59501 git:(main) ✗ uv run poc.py admin -h
usage: poc.py admin [-h] -t TARGET -u USER -s SID -a ACCESS_TOKEN

options:
  -h, --help            show this help message and exit
  -t, --target TARGET   target SMS provider FQDN or IP address
  -u, --user USER       Username to add as admin
  -s, --sid SID         New admins user's SID
  -a, --access-token ACCESS_TOKEN
                        AdminService access token
下载工具