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

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

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

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

工具目录

分类

查看所有分类
Loading categories
Tomcat-CVE-2025-31650 — Proof-of-concept exploit for Apache Tomcat HTTP/2 DoS vulnerability (CVE-2025-31650). Features async-based scalable attack, check-only detection mode, and Server header inspection. | Kitploit
工具/GitHubGitHub/b1gn0se/tomcat-cve-2025-31650
漏洞分析漏洞利用Web安全渗透测试学习与教育
GitHubb1gn0se/tomcat-cve-2025-31650

Tomcat-CVE-2025-31650

Proof-of-concept exploit for Apache Tomcat HTTP/2 DoS vulnerability (CVE-2025-31650). Features async-based scalable attack, check-only detection mode, and Server header inspection.

查看仓库
1年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2025-31650

🚨 Apache Tomcat HTTP/2 拒绝服务漏洞 (CVE-2025-31650) 的概念验证 (PoC)

该脚本通过发送格式错误的 priority 头(利用 HTTP/2 协议)触发 Apache Tomcat 中的内存耗尽条件。


🎯 受影响版本

  • Apache Tomcat 9.0.76 – 9.0.102
  • Apache Tomcat 10.1.10 – 10.1.39
  • Apache Tomcat 11.0.0-M2 – 11.0.5

⚙️ 功能特性

  • ✔️ HTTP/2 支持检测
  • ✔️ Server 头检查(识别 Tomcat)
  • ✔️ --check-only 模式(非侵入式)
  • ✔️ 基于异步的可扩展利用,强度可调

🚀 使用方法

✅ 仅检查(安全检测)

root@kitploit:~
python3 PoC.py --target https://example.com:8443 --check-only

💥 利用(DoS)

root@kitploit:~
python3 PoC.py --target https://example.com:8443 --exploit --tasks 50 --requests 5000

🧩 参数说明


⚠️ 免责声明

本 PoC 仅用于教育和授权的安全测试 ****。
不得 在未经明确许可的情况下对系统使用。

下载工具
参数描述
--target包含协议和端口的完整目标 URL
--check-only仅测试服务器是否支持 HTTP/2 并且是否为 Tomcat
--exploit执行实际的 DoS 攻击
--tasks异步任务数量(默认:50)
--requests每个任务的请求次数(默认:5000)