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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2026-23009-DICOM-Network-Image-Injection-Without-Authentication — 针对 CVE-2026-23009 的概念验证,演示使用 pynetdicom 向存在漏洞的 PACS 服务器进行未认证的 DICOM 图像注入,并附带模拟的 C-STORE SCP 和利用脚本。 | Kitploit
工具/GitHubGitHub/george0papasotiriou/cve-2026-23009-dicom-network-image-injection-without-authentication
Payload生成漏洞分析漏洞利用网络安全渗透测试身份验证
GitHubgeorge0papasotiriou/cve-2026-23009-dicom-network-image-injection-without-authentication

CVE-2026-23009-DICOM-Network-Image-Injection-Without-Authentication

针对 CVE-2026-23009 的概念验证,演示使用 pynetdicom 向存在漏洞的 PACS 服务器进行未认证的 DICOM 图像注入,并附带模拟的 C-STORE SCP 和利用脚本。

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
查看仓库
15天前尚未审核

CVE-2026-23009 – 无认证的 DICOM 网络图像注入

程序代码 (Python pydicom)

root@kitploit:~
# dicom_server_sim.py - DICOM C-STORE SCP with no AE title check
from pynetdicom import AE, evt, AllStoragePresentationContexts

def handle_store(event):
    ds = event.dataset
    # No authentication, accepts any image from any remote
    ds.save_as(f"/tmp/{ds.SOPInstanceUID}.dcm")
    return 0x0000

handlers = [(evt.EVT_C_STORE, handle_store)]
ae = AE()
ae.supported_contexts = AllStoragePresentationContexts
ae.start_server(('', 11112), evt_handlers=handlers)

CVE-2026-23009 – 无认证的 DICOM 网络图像注入

Severity: Critical

概述

医学影像服务器(PACS)在未进行身份验证的情况下接受来自任何远程主机的 DICOM 图像。医院网络上的攻击者可以注入包含恶意像素数据或患者信息的伪造图像,从而导致误诊或下游系统受损。

漏洞详情

  • 类型: 访问控制不足
  • 影响: 数据完整性失效,患者安全风险。
  • 根本原因: DICOM C‑STORE SCP 未强制执行身份验证,也未验证发送方的应用实体标题(Application Entity Title)。

漏洞利用演示

  1. 启动存在漏洞的 DICOM 服务器:
    root@kitploit:~
    pip install pynetdicom
    python dicom_server_sim.py
    
  2. 注入恶意图像:
    root@kitploit:~
    python exploit_dicom_inject.py
    

该文件会出现在 /tmp 中。

下载工具