Skip to content
KitploitKITPLOIT
ToolsExploitsBlog
Log in
Einreichen
ToolsExploitsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
Tools/GitHubGitHub/ch4120n/ch4120n-cve-pulse
Management von Indicators of Compromise (IOC)OSINT (Open-Source-Intelligence)AufklärungSchwachstellenscannerBedrohungsfeeds & AggregatorenSchwachstellenanalyseExploitationScripting & AutomatisierungInformationsbeschaffungBedrohungsanalyseKuratierte Ressourcen
3120vor 6h 38mNoch nicht geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
GitHubch4120n/ch4120n-cve-pulse

Ch4120N-CVE-Pulse

Live-CVE-PoC-Aggregator (Proof-of-Concepts) mit intelligenter Suche & Threat Intelligence

Repository anzeigenWebseite
Teilen
Ch4120N CVE Pulse Logo Preview

⚡ Ch4120N CVE Pulse

Live-CVE-PoC-Aggregator mit intelligenter Suche & Threat Intelligence

Language License Status

GitHub stars GitHub forks


entdeckt, bewertet und indexiert automatisch von GitHub. Es reichert sie mit und -Daten an, erstellt tägliche und stellt eine schnelle, durchsuchbare bereit

CVE Pulse
CVE-Proof‑of‑Concepts

EPSS-Scores
CISA-KEV
Snapshots & Diffs
statische Website

📋 Inhaltsverzeichnis

  • 👨‍💻 Projektersteller
  • 🎯 Was es macht
  • ✨ Hauptfunktionen
  • 🧱 Architektur
  • ⚙️ Wie es funktioniert
  • 🚀 Schnellstart
  • 📦 Installation
  • 💻 Verwendung
    • Unterbefehle
    • Vollständige Pipeline
  • 📊 Ausgabe & Website
  • 🗂️ Projektstruktur
  • 🔧 Konfiguration
  • 📡 Datenquellen
  • 📅 Automatisierung (CI/CD)
  • 📈 Trending PoCs
  • ⚠️ Haftungsausschluss
  • 📄 Lizenz

👨‍💻 Projektersteller

Ch4120N – Sicherheitsenthusiast & Automatisierungsliebhaber.
📧 [email protected]


🎯 Was es macht

  1. Ruft die neuesten EPSS-Scores und den CISA-Katalog der bekannten ausgenutzten Schwachstellen (KEV) ab.
  2. Durchsucht GitHub nach Repositories, die Exploit-PoCs für CVEs enthalten (mittels Suche + GraphQL-Metadaten).
  3. Bewertet jeden Kandidaten mit einem Konfidenzmodell (Stars, Aktualität, Keyword-Übereinstimmungen, Blacklist usw.).
  4. Verknüpft die PoC-Daten mit EPSS und KEV und erstellt dann eine vollständige JSON-API.
  5. Generiert eine statische Website mit einer leistungsstarken clientseitigen Suchmaschine.
  6. Erstellt tägliche Snapshots und Diffs, damit du neue PoCs mit hoher Konfidenz verfolgen kannst.

✨ Hauptfunktionen

  • 🔍 Automatisierte PoC-Entdeckung – GitHub-Code-/Repository-Suche über mehrere Zeitfenster
  • 🧠 Intelligente Bewertung – Code- vs. Dokumentations-Übereinstimmungen, Star-Anzahl, Aktualität, Blacklist und Heuristiken
  • 📈 EPSS- & KEV-Integration – CISAs KEV-Liste und FIRSTs EPSS-Scores werden mit PoC-Daten zusammengeführt
  • 📊 Tägliche Snapshots & Diffs – sieh, was neu ist, was zu „hoher Konfidenz" hochgestuft und was entfernt wurde
  • 🌐 Durchsuchbare Website – Fuzzy-Suche nach CVE-ID, Hersteller, Produkt, Keyword, mit negativen Filtern (-windows)
  • 🚀 Vollständig automatisiert – GitHub-Actions-Pipelines aktualisieren alles nach Zeitplan
  • 💾 Keine Serverkosten – alle Daten sind statisches JSON/HTML, gehostet auf GitHub Pages
  • 🛡️ Blacklist-Unterstützung – ignorieren Sie rauschige oder irrelevante Repositories

🧱 Architektur

Project Architecture Sample

⚙️ Wie es funktioniert

  1. fetch-epss lädt die Top 2000 CVEs nach EPSS-Score herunter.
  2. fetch-kev lädt den CISA-KEV-Katalog herunter.
  3. sync-cves liest data/github.txt und ruft CVE-Metadaten von der MITRE-API ab, dann werden Markdown-Dateien für jede CVE erstellt/aktualisiert.
  4. pipeline (oder einzelne build-*-Befehle):
    • Erstellt einen Scope von CVEs zum Scannen (aus github.txt oder zuvor niedrig-konfidenten).
    • Verwendet die GitHub-Such-API, um Repositories zu finden, die die CVE-ID erwähnen.
    • Reichert Kandidaten mit Repository-Metadaten (Stars, Sprache, Themen) über GraphQL an.
    • Bewertet jedes Repository und weist eine Konfidenzstufe zu (hoch, mittel, niedrig).
    • Schreibt JSON-Dateien pro CVE, einen Index und eine Top-100-Liste.
    • Erstellt einen Snapshot des aktuellen Zustands und ein Diff gegenüber dem Vortag.
  5. build-site generiert CVE_list.json, trending_poc.json und die statische HTML-Seite.
  6. Die Website (docs/) wird auf GitHub Pages bereitgestellt.

🚀 Schnellstart```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:~
---

## 📦 Installation

**Voraussetzungen:**
- Python 3.9+
- `pip`

Installiere die Pakete:```bash
pip install -r requirements.txt

(requirements.txt enthält requests, jinja2 und weitere Abhängigkeiten.)


💻 Verwendung

Alle Vorgänge laufen über das einzelne Skript chCVEPulse.py.

Unterbefehle

BefehlBeschreibung
fetch-epssEPSS-Daten herunterladen
fetch-kevKEV-Katalog herunterladen
sync-cvesCVE-Markdowns aus data/github.txt aktualisieren
build-siteDie statische Website generieren (CVE-Liste + HTML)
build-diffsTäglichen Diff aus den letzten beiden Snapshots erstellen
build-joinedZusammengeführte KEV+EPSS+PoC-JSON-Endpunkte erstellen
pipelineDie vollständige Pipeline ausführen (discover → output → diff → site)

Beispiele:```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:~
### Vollständige Pipeline

Der `pipeline`-Unterbefehl kann fein abgestimmt werden:

- `--days` : wie viele Tage zurück GitHub durchsucht werden soll (Standard: 7)
- `--mode` : `daily` (aktuelle CVEs, schneller) oder `weekly` (breiterer Scan)
- `--limit` : maximale Anzahl zu scannender CVEs (Standard: 50)
- `--cve` : eine oder mehrere CVE-IDs zum Scannen angeben
- `--skip-discovery` : nur Ausgaben aus vorhandenen Daten neu generieren
- `--check-links` : überprüfen, ob Repository-URLs noch erreichbar sind

---

## 📊 Ausgabe & Website

Nach einem erfolgreichen Pipeline-Lauf enthält `docs/`:

- **`index.html`** – die Hauptsuchseite (unterstützt von `logic.js` und `style.css`)
- **`CVE_list.json`** – alle CVEs mit Beschreibungen und PoC-Links
- **`trending_poc.json`** – kürzlich aktualisierte PoCs (aus der automatisch aktualisierten README)
- **`api/v1/`** – vollständige REST-ähnliche JSON-Endpunkte:
  - `joined_top.json` – CVEs mit hoher Priorität mit PoCs, EPSS und KEV-Status
  - `kev.json` – angereicherte KEV-Liste
  - `epss_top.json` – Top-EPSS-CVEs mit PoCs
  - `cve/{CVE-ID}.json` – detaillierte PoC-Informationen pro CVE
  - `snapshots/` – tägliche Status-Snapshots
  - `diffs/` – tägliche Änderungen

Die Suche unterstützt **Fuzzy-Matching**, Hersteller-/Produktfilter und negative Begriffe (z. B. `-windows`).

---

## 🗂️ Projektstruktur```
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

🔧 Konfiguration

Fast alle Einstellungen befinden sich in scripts/config.py:

  • GITHUB_SOURCES – Pfad zu deiner data/github.txt
  • EPSS_API_URL, KEV_URL, CVE_API_TEMPLATE – externe API-Endpunkte
  • HIGH_EPSS_THRESHOLD – minimaler EPSS-Wert für „hohe“ Warnungen
  • TOP_KEV_COUNT – wie viele KEV-Einträge behalten werden
  • SNAPSHOT_RETENTION_DAYS – wie lange alte Snapshots aufbewahrt werden

📡 Datenquellen

QuelleBeschreibung
GitHub Search APIEntdeckt Repositories, die CVE-IDs erwähnen
GitHub GraphQLRuft Star-Anzahl, Sprache, Themen, Fork-/Archiv-Status ab
FIRST EPSSExploit Prediction Scoring System
CISA KEVKatalog bekannter ausgenutzter Schwachstellen
MITRE CVE APIOffizielle CVE-Beschreibungen, Referenzen, Produkte

Ein GitHub-Token wird empfohlen, um die API-Ratenlimits zu erhöhen (als Umgebungsvariable GITHUB_TOKEN festlegen).


📅 Automatisierung (CI/CD)

Drei GitHub-Actions-Workflows halten alles aktuell:

  • sync_cve_pocs.yml – läuft täglich, liest data/github.txt, ruft frische CVE-Metadaten ab und aktualisiert Markdown-Dateien.
  • hot_cves.yml – läuft alle 6 Stunden, aktualisiert den Abschnitt Trending PoCs in dieser README.
  • site.yml – baut und deployt die statische Website auf GitHub Pages.

Alle Workflows befinden sich in .github/workflows/.


📈 Trending PoCs

Die untenstehende Tabelle Trending PoCs wird automatisch aktualisiert – alle 6 Stunden durch die CI-Pipeline.

2026 (latest 20 of 584 repos)

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-poc

2025 (latest 20 of 594 repos)

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⭐

2024 (latest 20 of 636 repos)

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 ago

2023 (latest 20 of 531 repos)

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 ago

2022 (latest 20 of 560 repos)

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

⚠️ Haftungsausschluss

Dieses Projekt ist für Threat Intelligence, Schwachstellenmanagement und defensive Sicherheitsforschung gedacht.
Verwende die verlinkten Repositories nicht für illegale oder unbefugte Aktivitäten.
Die Autoren hosten oder befürworten den PoC-Code nicht – sie indexieren lediglich öffentlich verfügbare Informationen.


📄 Lizenz

GPLv3-Lizenz – den vollständigen Text findest du in der Datei LICENSE.


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

⭐ Wenn dir dieses Projekt hilft, ziehe bitte einen Stern in Betracht!

GitHub stars

Made with ❤️ by Ch4120N

Tool herunterladen
CVE-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
17 hours ago
CVE-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.
CVE-2024-21413
CVE-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
CVE-2023-20887
VMWare 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
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