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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2026-21010-VoIP-SIP-Digest-Authentication-Replay — 针对 CVE-2026-21010 的 Python PoC,可重放捕获的 SIP digest Authorization 头,绕过 nonce 唯一性/过期机制并拨打未经授权的 VoIP 通话。 | Kitploit
工具/GitHubGitHub/george0papasotiriou/cve-2026-21010-voip-sip-digest-authentication-replay
身份验证与授权漏洞分析漏洞利用网络安全渗透测试对抗性攻击
GitHubgeorge0papasotiriou/cve-2026-21010-voip-sip-digest-authentication-replay

CVE-2026-21010-VoIP-SIP-Digest-Authentication-Replay

针对 CVE-2026-21010 的 Python PoC,可重放捕获的 SIP digest Authorization 头,绕过 nonce 唯一性/过期机制并拨打未经授权的 VoIP 通话。

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

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

CVE-2026-21010 – VoIP SIP 摘要认证重放

程序代码(Python SIP 模拟器)

root@kitploit:~
# sip_server_sim.py - SIP server that accepts replayed authenticated requests
from flask import Flask, request

app = Flask(__name__)
# Simulated nonce storage: doesn't track used nonces
used_nonces = set()

@app.route('/call', methods=['POST'])
def call():
    auth_header = request.headers.get('Authorization')
    if not auth_header:
        return 'Unauthorized', 401, {'WWW-Authenticate': 'Digest realm="test", nonce="abc123"'}
    # Vulnerability: no replay protection; accepts the same nonce repeatedly
    # In real SIP, a nonce should be used once; here we skip that check.
    return "Call connected"

if __name__ == '__main__':
    app.run(port=5060)

CVE-2026-21010 – VoIP SIP 摘要认证重放

Severity: High

概述

SIP 服务器实现了摘要认证,但没有强制 nonce 的唯一性或过期时间。攻击者可以捕获单个有效的 Authorization 头并重放它来进行未经授权的呼叫,从而绕过认证。

漏洞详情

  • 类型: 重放攻击
  • 影响: 话费欺诈、未经授权的呼叫转发。
  • 根本原因: 服务器不跟踪已使用的 nonce,并多次接受相同的认证数据。

漏洞利用演示

  1. 启动 SIP 服务器:
    root@kitploit:~
    pip install flask
    python sip_server_sim.py
    
  2. 运行漏洞利用程序:
    root@kitploit:~
    python exploit_sip_replay.py
    

重放的请求成功。

下载工具