Skip to content
KitploitKITPLOIT
工具漏洞利用博客
Log in
提交
工具漏洞利用博客
提交

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

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

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

工具目录

分类

查看所有分类
Loading categories
Ch4120N-CVE-Pulse — 实时 CVE PoC(概念验证)聚合器,具备智能搜索与威胁情报功能 | Kitploit
工具/GitHubGitHub/ch4120n/ch4120n-cve-pulse
危害指标 (IOC) 管理OSINT (开源情报)侦察漏洞扫描器威胁源与聚合器漏洞分析漏洞利用脚本与自动化信息收集威胁情报精选资源
31165小时28分前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
GitHub
ch4120n/ch4120n-cve-pulse

Ch4120N-CVE-Pulse

实时 CVE PoC(概念验证)聚合器,具备智能搜索与威胁情报功能

查看仓库网站
Ch4120N CVE Pulse Logo Preview

⚡ Ch4120N CVE Pulse

带智能搜索与威胁情报的实时 CVE PoC 聚合器

Language License Status

GitHub stars GitHub forks


CVE Pulse 自动从 GitHub 发现、评分并索引 CVE 概念验证。
它使用 EPSS 评分 和 CISA KEV 数据对其进行丰富,构建每日 快照与差异对比,并提供快速、可搜索的 静态网站


📋 目录

  • 👨‍💻 项目创建者
  • 🎯 功能简介
  • ✨ 主要特性
  • 🧱 架构
  • ⚙️ 工作原理
  • 🚀 快速开始
  • 📦 安装
  • 💻 使用方法
    • 子命令
    • 完整流水线
  • 📊 输出与网站
  • 🗂️ 项目结构
  • 🔧 配置
  • 📡 数据来源
  • 📅 自动化 (CI/CD)
  • 📈 热门 PoC
  • ⚠️ 免责声明
  • 📄 许可证

👨‍💻 项目创建者

Ch4120N – 安全爱好者与自动化爱好者。
📧 [email protected]


🎯 功能简介

  1. 获取最新的 EPSS 评分和 CISA 已知被利用漏洞 (KEV) 目录。
  2. 扫描 GitHub,查找包含 CVE 漏洞利用 PoC 的仓库(使用搜索 + GraphQL 元数据)。
  3. 使用置信度模型对每个候选进行评分(星标数、时效性、关键词匹配、黑名单等)。
  4. 将 PoC 数据与 EPSS 和 KEV 合并,然后构建完整的 JSON API。
  5. 生成带有强大客户端搜索引擎的静态网站。
  6. 创建每日快照和差异对比,以便跟踪新的高置信度 PoC。

✨ 主要特性

  • 🔍 自动化 PoC 发现 – 多窗口 GitHub 代码/仓库搜索
  • 🧠 智能评分 – 代码与文档匹配、星标数、时效性、黑名单和启发式规则
  • 📈 EPSS 与 KEV 集成 – CISA 的 KEV 列表和 FIRST 的 EPSS 评分与 PoC 数据合并
  • 📊 每日快照与差异对比 – 查看新增内容、被提升为“高置信度”的内容以及被移除的内容
  • 🌐 可搜索网站 – 按 CVE ID、供应商、产品、关键词进行模糊搜索,支持否定过滤(-windows)
  • 🚀 全自动化 – GitHub Actions 流水线按计划更新所有内容
  • 💾 零服务器成本 – 所有数据均为静态 JSON/HTML,托管在 GitHub Pages 上
  • 🛡️ 黑名单支持 – 忽略嘈杂或不相关的仓库

🧱 架构

Project Architecture Sample

⚙️ 工作原理

  1. fetch-epss 下载 EPSS 评分排名前 2000 的 CVE。
  2. fetch-kev 下载 CISA KEV 目录。
  3. sync-cves 读取 data/github.txt 并从 MITRE API 获取 CVE 元数据,然后为每个 CVE 创建/更新 markdown 文件。
  4. pipeline(或单独的 build-* 命令):
    • 构建要扫描的 CVE 范围(来自 github.txt 或之前的低置信度 CVE)。
    • 使用 GitHub 搜索 API 查找提及 CVE ID 的仓库。
    • 通过 GraphQL 使用仓库元数据(星标数、语言、主题)丰富候选。
    • 对每个仓库评分并分配置信度等级(高、中、低)。
    • 写入每个 CVE 的 JSON 文件、索引和 top-100 列表。
    • 创建当前状态的快照以及与前一天对比的差异。
  5. build-site 生成 CVE_list.json、trending_poc.json 和静态 HTML 页面。
  6. 网站(docs/)部署到 GitHub Pages。

🚀 快速开始```bash

Clone the repository

git clone https://github.com/Ch4120N/Ch4120N-CVE-Pulse.git cd Ch4120N-CVE-Pulse

Install dependencies

pip install -r requirements.txt

Download base data

python chCVEPulse.py fetch-epss python chCVEPulse.py fetch-kev

Sync your initial CVE list (from data/github.txt)

python chCVEPulse.py sync-cves

Run the full discovery pipeline (needs GITHUB_TOKEN for higher rate limits)

export GITHUB_TOKEN=your_token_here python chCVEPulse.py pipeline --days 7

Generate the static website

python chCVEPulse.py build-site

Open docs/index.html in your browser

root@kitploit:~
---

## 📦 安装

**环境要求:**
- Python 3.9+
- `pip`

安装软件包:```bash
pip install -r requirements.txt

(requirements.txt 包含 requests、jinja2 以及其他依赖项。)


💻 使用方法

所有操作都通过单一脚本 chCVEPulse.py 完成。

子命令

示例:```bash

Fetch new data

python chCVEPulse.py fetch-epss --limit 2000 python chCVEPulse.py fetch-kev

Update a specific CVE

python chCVEPulse.py sync-cves --cve CVE-2025-12345

Full pipeline (daily mode)

python chCVEPulse.py pipeline --days 7 --mode daily --limit 50

Regenerate website only

python chCVEPulse.py build-site --html-mode summary

root@kitploit:~
### 完整流水线

`pipeline` 子命令可以进行微调:

- `--days`:回溯搜索 GitHub 的天数(默认:7)
- `--mode`:`daily`(近期 CVE,速度更快)或 `weekly`(更广泛的扫描)
- `--limit`:最多扫描的 CVE 数量(默认:50)
- `--cve`:指定一个或多个要扫描的 CVE ID
- `--skip-discovery`:仅从现有数据重新生成输出
- `--check-links`:验证仓库 URL 是否仍然有效

---

## 📊 输出与网站

流水线成功运行后,`docs/` 包含:

- **`index.html`** – 主搜索页面(由 `logic.js` 和 `style.css` 驱动)
- **`CVE_list.json`** – 所有 CVE 及其描述和 PoC 链接
- **`trending_poc.json`** – 最近更新的 PoC(来自自动更新的 README)
- **`api/v1/`** – 完整的类 REST JSON 端点:
  - `joined_top.json` – 带有 PoC、EPSS 和 KEV 状态的高优先级 CVE
  - `kev.json` – 增强的 KEV 列表
  - `epss_top.json` – 带有 PoC 的顶级 EPSS CVE
  - `cve/{CVE-ID}.json` – 每个 CVE 的详细 PoC 信息
  - `snapshots/` – 每日状态快照
  - `diffs/` – 逐日变化

搜索支持**模糊匹配**、供应商/产品过滤器以及否定词(例如 `-windows`)。

---

## 🗂️ 项目结构```
Ch4120N-CVE-Pulse/
├── chCVEPulse.py
├── scripts/
│   ├── config.py
│   ├── helpers.py
│   ├── github_api.py
│   ├── scoring.py
│   ├── discovery.py
│   ├── outputs.py
│   ├── diff.py
│   ├── joined.py
│   ├── site.py
│   ├── sync.py
│   ├── fetch_epss.py
│   ├── fetch_kev.py
│   └── pipeline.py
├── templates/
│   └── index.html# Jinja2 template for the website
├── data/
│   ├── github.txt# CVE -> PoC URL list (edit this)
│   ├── blacklist.txt
│   ├── cache/
│   └── evidence/
├── docs/
│   ├── api/v1/
│   └── index.html, style.css, logic.js
├── requirements.txt
└── README.md

🔧 配置

几乎所有设置都位于 scripts/config.py 中:

  • GITHUB_SOURCES – 指向你的 data/github.txt 的路径
  • EPSS_API_URL、KEV_URL、CVE_API_TEMPLATE – 外部 API 端点
  • HIGH_EPSS_THRESHOLD – “高”警报的最低 EPSS 值
  • TOP_KEV_COUNT – 保留多少条 KEV 条目
  • SNAPSHOT_RETENTION_DAYS – 旧快照保留多长时间

📡 数据源

建议使用 GitHub token 以提高 API 速率限制(设置为 GITHUB_TOKEN 环境变量)。


📅 自动化(CI/CD)

三个 GitHub Actions 工作流保持一切更新:

  • sync_cve_pocs.yml – 每天运行,读取 data/github.txt,获取最新的 CVE 元数据并更新 markdown 文件。
  • hot_cves.yml – 每 6 小时运行一次,更新本 README 中的 Trending PoCs 部分。
  • site.yml – 构建静态网站并部署到 GitHub Pages。

所有工作流都位于 .github/workflows/ 中。


📈 Trending PoCs

下面的 Trending PoCs 表格由 CI 流水线每 6 小时自动更新。

2026 (latest 20 of 584 repos)

2025 (latest 20 of 594 repos)

2024 (latest 20 of 636 repos)

2023 (latest 20 of 531 repos)

2022 (latest 20 of 560 repos)


⚠️ 免责声明

本项目旨在用于威胁情报、漏洞管理和防御性安全研究。
请勿将链接的仓库用于任何非法或未经授权的活动。
作者不托管也不认可 PoC 代码——他们仅索引公开可用的信息。


📄 许可证

GPLv3 许可证 – 完整文本请参见 LICENSE 文件。


"Stay ahead of threats – track every CVE PoC in real time."

⭐ 如果这个项目对你有帮助,请考虑给它一个 star!

GitHub stars

Made with ❤️ by Ch4120N

下载工具
命令描述
fetch-epss下载 EPSS 数据
fetch-kev下载 KEV 目录
sync-cves从 data/github.txt 更新 CVE markdown 文件
build-site生成静态网站(CVE 列表 + HTML)
build-diffs基于最近两次快照构建每日差异
build-joined创建合并的 KEV+EPSS+PoC JSON 端点
pipeline运行完整流水线(发现 → 输出 → 差异 → 网站)
来源描述
GitHub Search API发现提及 CVE ID 的仓库
GitHub GraphQL获取 star 数、语言、主题、fork/归档状态
FIRST EPSS漏洞利用预测评分系统
CISA KEV已知被利用漏洞目录
MITRE CVE API官方 CVE 描述、参考、产品
StarsUpdatedRepositoryDescription
4070⭐4 hours agocopy-fail-CVE-2026-31431Copy Fail (CVE-2026-31431): 9-year-old Linux kernel LPE found by Theori's Xint Code
576⭐8 days agocve_2026_31431Exploit POC for CVE_2026_31431
329⭐20 hours agoCVE-2026-54121Certighost POC
245⭐8 hours agoCVE-2026-43499-popsicleCVE-2026-43499 Implementation for 6.12.23-android16-5-g75e9b1c7ae7c-abogki463945075-4k
231⭐4 days agoCVE-2026-41089Netlogon and CLDAP vulnerability research with a proof of concept.
304⭐1 day agoCVE-2026-21858n8n Ni8mare - Unauthenticated Arbitrary File Read to RCE Chain (CVSS 10.0)
208⭐14 days agoCVE-2026-24061Exploitation of CVE-2026-24061
159⭐6 days agoCVE-2026-43499CVE-2026-43499 PoC
177⭐2 days agoCVE-2026-62911POC pre-auth RCE on Exchange
825⭐2 days agoCVE-2026-24061CVE-2026-24061 exploit PoC
141⭐17 hours agoCVE-2026-42980-POCCVE-2026-42980 PUBLIC EXPLOIT + RESEARCH
101⭐17 hours agoCVE-2026-75604-pocCVE-2026-75604 Next.js Windows RCE poc
124⭐7 days agoCVE-2026-41651
102⭐23 hours agoCVE-2026-43499-Poc-AnalysisVulnerability analysis and Proof of Concept (PoC) for CVE-2026-43499 affecting Xiaomi devices. For educational and research purposes only.
111⭐25 days agoCVE-2026-31431-Advanced-ExploitCVE-2026-31431 纯文件利用
18⭐6 days agoCVE-2026-43499-Poc-AnalysisVulnerability analysis and Proof of Concept (PoC) for CVE-2026-43499 affecting Xiaomi devices. For educational and research purposes only.
63⭐29 days agoCVE-2026-45504CVE-2026-45504 Microsoft Exchange File Read
41⭐8 days agoCVE-2026-31431
109⭐6 days agoCopy-Fail-Exploit-CVE-2026-31431Most Linux LPEs need a race window or a kernel-specific offset. Copy Fail is a straight-line logic flaw, it needs neither. The same 732-byte Python script (or .c elf) roots every Linux distribution shipped since 2017.
83⭐7 days agoCVE-2026-0073-Android-adbd-authentication-bypass-POC
StarsUpdatedRepositoryDescription
1430⭐1 day agoCVE-2025-55182Explanation and full RCE PoC for CVE-2025-55182
792⭐8 days agoCVE-2025-55182-researchCVE-2025-55182 POC
717⭐2 days agoCVE-2025-33073PoC Exploit for the NTLM reflection SMB flaw.
528⭐14 hours agoCVE-2025-32463_chwootEscalation of Privilege to the root through sudo binary with chroot option. CVE-2025-32463
477⭐8 days agoCVE-2025-32463Local Privilege Escalation to Root via Sudo chroot in Linux
313⭐19 hours agoCVE-2025-53770-ExploitSharePoint WebPart Injection Exploit Tool
314⭐17 days agoCVE-2025-55182RSC/Next.js RCE Vulnerability Detector & PoC Chrome Extension – CVE-2025-55182 & CVE-2025-66478
1062⭐7 days agoReact2Shell-CVE-2025-55182-original-pocOriginal Proof-of-Concepts for React2Shell CVE-2025-55182
406⭐2 days agoCVE-2025-24071_PoCCVE-2025-24071: NTLM Hash Leak via RAR/ZIP Extraction and .library-ms File
213⭐1 day agoCVE-2025-32023PoC & Exploit for CVE-2025-32023 / PlaidCTF 2025 "Zerodeo"
385⭐10 days agoColorOS-CVE-2025-10184ColorOS短信漏洞,以及用户自救方案
281⭐17 hours agoCVE-2025-55182-advanced-scanner-
432⭐2 days agoNext.js-RSC-RCE-Scanner-CVE-2025-66478A command-line scanner for batch detection of Next.js application versions and determining if they are affected by CVE-2025-66478 vulnerability.
197⭐1 day agoPOC-CVE-2025-24813his repository contains an automated Proof of Concept (PoC) script for exploiting CVE-2025-24813, a Remote Code Execution (RCE) vulnerability in Apache Tomcat. The vulnerability allows an attacker to upload a malicious serialized payload to the server, leading to arbitrary code execution via deserialization when specific conditions are met.
190⭐183 days agoRSC-Detect-CVE-2025-55182RSC Detect CVE 2025 55182
194⭐8 days agoCVE-2025-30208-EXPCVE-2025-30208-EXP
142⭐10 days agoCVE-2025-32433CVE-2025-32433 https://github.com/erlang/otp/security/advisories/GHSA-37cp-fgq5-7wc2
119⭐2 days agoCVE-2025-43300This is POC for IOS 0click CVE-2025-43300
160⭐8 days agoCVE-2025-21756Exploit for CVE-2025-21756 for Linux kernel 6.6.75. My first linux kernel exploit!
195⭐27 days agoCVE-2025-32756-POCProof of Concept for CVE-2025-32756 - A critical stack-based buffer overflow vulnerability affecting multiple Fortinet products.
StarsUpdatedRepositoryDescription
2456⭐2 days agoCVE-2024-1086Universal local privilege escalation Proof-of-Concept exploit for CVE-2024-1086, working on most Linux kernels between v5.14 and v6.6, including Debian, Ubuntu, and KernelCTF. The success rate is 99.4% in KernelCTF images.
689⭐1 day agoCVE-2024-38063poc for CVE-2024-38063 (RCE in tcpip.sys)
497⭐20 days agocve-2024-6387-poca signal handler race condition in OpenSSH's server (sshd)
517⭐1 day agoCVE-2024-49113LdapNightmare is a PoC tool that tests a vulnerable Windows Server against CVE-2024-49113
526⭐2 days agoCVE-2024-6387_CheckCVE-2024-6387_Check is a lightweight, efficient tool designed to identify servers running vulnerable versions of OpenSSH
224⭐31 days agoCVE-2024-38077RDL的堆溢出导致的RCE
378⭐23 days agocve-2024-6387-poc32-bit PoC for CVE-2024-6387 — mirror of the original 7etsuo/cve-2024-6387-poc
333⭐8 days agoCVE-2024-21338Local Privilege Escalation from Admin to Kernel vulnerability on Windows 10 and Windows 11 operating systems with HVCI enabled.
331⭐5 days agoCVE-2024-0044CVE-2024-0044: a "run-as any app" high-severity vulnerability affecting Android versions 12 and 13
320⭐2 days agoCVE-2024-4577PHP CGI Argument Injection (CVE-2024-4577) Remote Code Execution PoC
285⭐2 days agoCVE-2024-21413CVE-2024-21413 PoC for THM Lab
775⭐1 day agoCVE-2024-21413-Microsoft-Outlook-Remote-Code-Execution-VulnerabilityMicrosoft-Outlook-Remote-Code-Execution-Vulnerability
195⭐2 days agoCVE-2024-6387Remote Unauthenticated Code Execution Vulnerability in OpenSSH server (CVE-2024-6387)
9⭐40 days agoCVE-2024-38077-POC
235⭐59 days agoCVE_2024_30078_POC_WIFIbasic concept for the latest windows wifi driver CVE
181⭐6 days agoCVE-2024-25600Unauthenticated Remote Code Execution – Bricks <= 1.9.6
208⭐2 days agoCVE-2024-23897CVE-2024-23897
87⭐40 days agoCVE-2024-40725-CVE-2024-40898CVE-2024-40725 and CVE-2024-40898, affecting Apache HTTP Server versions 2.4.0 through 2.4.61. These flaws pose significant risks to web servers worldwide, potentially leading to source code disclosure and server-side request forgery (SSRF) attacks.
113⭐14 days agoCVE-2024-6387PoC - Remote Unauthenticated Code Execution Vulnerability in OpenSSH server (Scanner and Exploit)
156⭐16 days agoCVE-2024-21413Microsoft Outlook Information Disclosure Vulnerability (leak password hash) - Expect Script POC
StarsUpdatedRepositoryDescription
784⭐14 days agoCVE-2023-38831-winrar-exploitCVE-2023-38831 winrar exploit generator
504⭐2 days agoWindows_LPE_AFD_CVE-2023-21768LPE exploit for CVE-2023-21768
381⭐3 days agoCVE-2023-32233CVE-2023-32233: Linux内核中的安全漏洞
418⭐10 days agoCVE-2023-0386CVE-2023-0386在ubuntu22.04上的提权
116⭐8 days agoCVE-2023-21839Weblogic CVE-2023-21839 RCE (无需Java依赖一键RCE)
394⭐19 days agoCVE-2023-4911PoC for CVE-2023-4911
284⭐13 days agoCVE-2023-21608Adobe Acrobat Reader - CVE-2023-21608 - Remote Code Execution Exploit
317⭐35 days agoCVE-2023-4863
246⭐2 days agoCVE-2023-44487Basic vulnerability scanning to see if web servers may be vulnerable to CVE-2023-44487
245⭐45 days agoCVE-2023-7028This repository presents a proof-of-concept of CVE-2023-7028
228⭐57 days agoCVE-2023-3519RCE exploit for CVE-2023-3519
168⭐2 days agoCVE-2023-36745
226⭐10 days agoCVE-2023-20887VMWare vRealize Network Insight Pre-Authenticated RCE (CVE-2023-20887)
345⭐2 days agoCVE-2023-23397-POC-Powershell
183⭐2 days agoCVE-2023-28252
136⭐40 days agoCVE-2023-2640-CVE-2023-32629GameOver(lay) Ubuntu Privilege Escalation
240⭐8 days agoWeblogic-CVE-2023-21839
205⭐2 days agoCVE-2023-46747-RCEexploit for f5-big-ip RCE cve-2023-46747
236⭐2 days agoCVE-2023-29357Microsoft SharePoint Server Elevation of Privilege Vulnerability
166⭐8 days agoCVE-2023-25157CVE-2023-25157 - GeoServer SQL Injection - PoC
StarsUpdatedRepositoryDescription
1132⭐1 day agoCVE-2022-0847-DirtyPipe-ExploitA root exploit for CVE-2022-0847 (Dirty Pipe)
570⭐8 days agoCVE-2022-23222CVE-2022-23222: Linux Kernel eBPF Local Privilege Escalation
360⭐37 days agoCVE-2022-21907HTTP Protocol Stack Remote Code Execution Vulnerability CVE-2022-21907
357⭐15 hours agoCVE-2022-40684A proof of concept exploit for CVE-2022-40684 affecting Fortinet FortiOS, FortiProxy, and FortiSwitchManager
377⭐35 days agoCVE-2022-29464WSO2 RCE (CVE-2022-29464) exploit and writeup.
735⭐2 hours agoCVE-2022-0847-DirtyPipe-ExploitsA collection of exploits and documentation that can be used to exploit the Linux Dirty Pipe vulnerability.
437⭐3 days agoCVE-2022-25636CVE-2022-25636
487⭐6 days agoCVE-2022-2588exploit for CVE-2022-2588
497⭐24 days agoCVE-2022-0995CVE-2022-0995 exploit
385⭐2 days agoCVE-2022-39197CobaltStrike <= 4.7.1 RCE
414⭐2 days agoCVE-2022-33679One day based on https://googleprojectzero.blogspot.com/2022/10/rc4-is-still-considered-harmful.html
281⭐10 days agoCVE-2022-0847CVE-2022-0847-DirtyPipe-Exploit CVE-2022-0847 是存在于 Linux内核 5.8 及之后版本中的本地提权漏洞。攻击者通过利用此漏洞,可覆盖重写任意可读文件中的数据,从而可将普通权限的用户提升到特权 root。 CVE-2022-0847 的漏洞原理类似于 CVE-2016-5195 脏牛漏洞(Dirty Cow),但它更容易被利用。漏洞作者将此漏洞命名为“Dirty Pipe”
354⭐18 hours agoCVE-2022-21894baton drop (CVE-2022-21894): Secure Boot Security Feature Bypass Vulnerability
609⭐2 days agoCVE-2022-38694_unlock_bootloaderThis is a one-time signature verification bypass. For persistent signature verification bypass, check https://github.com/TomKing062/CVE-2022-38691_38692
377⭐2 days agoCVE-2022-0185CVE-2022-0185
284⭐31 days agocve-2022-27255
265⭐172 days agoCVE-2022-39952POC for CVE-2022-39952
238⭐31 days agoCVE-2022-20699Cisco Anyconnect VPN unauth RCE (rwx stack)
236⭐9 days agoCVE-2022-30075Tp-Link Archer AX50 Authenticated RCE (CVE-2022-30075)
218⭐10 days agoCVE-2022-34918CVE-2022-34918 netfilter nf_tables 本地提权 POC