diff --git a/docs/assets/site.js b/docs/assets/site.js
index ddf0a6dd37..183403c4ba 100644
--- a/docs/assets/site.js
+++ b/docs/assets/site.js
@@ -59,6 +59,11 @@
async function filterTablesByData() {
const { pocSet, descSet } = await ensureSets();
+ const currentYear = new Date().getUTCFullYear();
+ const isRecent = (text) => {
+ const m = /CVE-(\d{4})-/i.exec(text || '');
+ return m ? parseInt(m[1], 10) >= currentYear - 1 : false;
+ };
document.querySelectorAll('table[data-require-poc], table[data-require-desc]').forEach(table => {
for (const row of Array.from(table.querySelectorAll('tbody tr'))) {
const link = row.querySelector('a');
@@ -67,7 +72,7 @@
const needsDesc = table.hasAttribute('data-require-desc');
const hasPoc = pocSet.has(idText);
const hasDesc = descSet.has(idText);
- if ((needsPoc && !hasPoc) || (needsDesc && !hasDesc)) {
+ if ((needsPoc && !hasPoc) || (needsDesc && !hasDesc) || !isRecent(idText)) {
row.remove();
}
}
@@ -87,6 +92,11 @@
return match ? parseInt(match[1], 10) : Infinity;
}
+ function cveYear(text) {
+ const m = /cve-(\d{4})-/i.exec(text || '');
+ return m ? parseInt(m[1], 10) : null;
+ }
+
function parseTrendingMarkdown(text) {
const rows = [];
const regex = /^\|\s*(\d+)\s*⭐\s*\|\s*([^|]+)\|\s*\[([^\]]+)\]\(([^)]+)\)\s*\|\s*(.*?)\|$/;
@@ -115,7 +125,12 @@
if (!res.ok) throw new Error('failed to load README');
const text = await res.text();
const entries = parseTrendingMarkdown(text)
- .filter(item => item.ageDays <= 5)
+ .filter(item => item.ageDays <= 4)
+ .filter(item => {
+ const currentYear = new Date().getUTCFullYear();
+ const yr = cveYear(item.name);
+ return yr !== null && yr >= currentYear - 1;
+ })
.sort((a, b) => b.stars - a.stars)
.slice(0, 20);
diff --git a/docs/cve/index.html b/docs/cve/index.html
index f476cf1dc7..2f69da0747 100644
--- a/docs/cve/index.html
+++ b/docs/cve/index.html
@@ -15,7 +15,6 @@
PoC Search
KEV
EPSS
- New KEV
diff --git a/docs/diffs/index.html b/docs/diffs/index.html
deleted file mode 100644
index 3c9ff8be9b..0000000000
--- a/docs/diffs/index.html
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-
-
-
- CVE PoC Hub
-
-
-
-
-
-
-
-
-
-
- CVE Vendor Product EPSS Percentile Date Added Due
-
-
- CVE-2025-59718
- Fortinet
- Multiple Products
- 0.000
- 0th
- 2025-12-16
- 2025-12-23
-
-
- CVE-2025-14611
- Gladinet
- CentreStack and Triofox
- 0.000
- 0th
- 2025-12-15
- 2026-01-05
-
-
- CVE-2025-43529
- Apple
- Multiple Products
- 0.000
- 0th
- 2025-12-15
- 2026-01-05
-
-
- CVE-2018-4063
- Sierra Wireless
- AirLink ALEOS
- 0.000
- 0th
- 2025-12-12
- 2026-01-02
-
-
- CVE-2025-14174
- Google
- Chromium
- 0.000
- 0th
- 2025-12-12
- 2026-01-02
-
-
- CVE-2025-58360
- OSGeo
- GeoServer
- 0.000
- 0th
- 2025-12-11
- 2026-01-01
-
-
- CVE-2025-6218
- RARLAB
- WinRAR
- 0.000
- 0th
- 2025-12-09
- 2025-12-30
-
-
- CVE-2025-62221
- Microsoft
- Windows
- 0.000
- 0th
- 2025-12-09
- 2025-12-30
-
-
- CVE-2022-37055
- D-Link
- Routers
- 0.000
- 0th
- 2025-12-08
- 2025-12-29
-
-
- CVE-2025-66644
- Array Networks
- ArrayOS AG
- 0.000
- 0th
- 2025-12-08
- 2025-12-29
-
-
- CVE-2025-55182
- Meta
- React Server Components
- 0.000
- 0th
- 2025-12-05
- 2025-12-12
-
-
- CVE-2021-26828
- OpenPLC
- ScadaBR
- 0.000
- 0th
- 2025-12-03
- 2025-12-24
-
-
- CVE-2025-48572
- Android
- Framework
- 0.000
- 0th
- 2025-12-02
- 2025-12-23
-
-
- CVE-2025-48633
- Android
- Framework
- 0.000
- 0th
- 2025-12-02
- 2025-12-23
-
-
- CVE-2021-26829
- OpenPLC
- ScadaBR
- 0.000
- 0th
- 2025-11-28
- 2025-12-19
-
-
- CVE-2025-61757
- Oracle
- Fusion Middleware
- 0.000
- 0th
- 2025-11-21
- 2025-12-12
-
-
- CVE-2025-13223
- Google
- Chromium V8
- 0.000
- 0th
- 2025-11-19
- 2025-12-10
-
-
- CVE-2025-58034
- Fortinet
- FortiWeb
- 0.000
- 0th
- 2025-11-18
- 2025-11-25
-
-
-
-
-
-
-
-
-
diff --git a/docs/epss/index.html b/docs/epss/index.html
index f9197cdf44..048d3f8df0 100644
--- a/docs/epss/index.html
+++ b/docs/epss/index.html
@@ -15,7 +15,6 @@
PoC Search
KEV
EPSS
- New KEV
diff --git a/docs/index.html b/docs/index.html
index ed1501e461..7bcd270b96 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -15,7 +15,6 @@
PoC Search
KEV
EPSS
- New KEV
@@ -57,7 +56,7 @@
@@ -71,13 +70,14 @@
+
-
+
CVE Vendor Product EPSS Percentile Date Added Due
@@ -333,139 +333,6 @@
-
-
-
-
- Stars Updated Name Description
-
-
- 1241
- 2 hours ago
- CVE-2025-55182
- Explanation and full RCE PoC for CVE-2025-55182
-
-
- 775
- 3 hours ago
- CVE-2025-55182-research
- CVE-2025-55182 POC
-
-
- 495
- 8 days ago
- CVE-2018-20250
- exp for https://research.checkpoint.com/extracting-code-execution-from-winrar
-
-
- 607
- 20 hours ago
- CVE-2025-33073
- PoC Exploit for the NTLM reflection SMB flaw.
-
-
- 496
- 4 days ago
- CVE-2025-32463_chwoot
- Escalation of Privilege to the root through sudo binary with chroot option. CVE-2025-32463
-
-
- 419
- 5 hours ago
- CVE-2025-32463
- Local Privilege Escalation to Root via Sudo chroot in Linux
-
-
- 305
- 1 day ago
- CVE-2025-53770-Exploit
- SharePoint WebPart Injection Exploit Tool
-
-
- 289
- 4 hours ago
- CVE-2025-55182
- RSC/Next.js RCE Vulnerability Detector & PoC Chrome Extension – CVE-2025-55182 & CVE-2025-66478
-
-
- 901
- 1 hour ago
- React2Shell-CVE-2025-55182-original-poc
- Original Proof-of-Concepts for React2Shell CVE-2025-55182
-
-
- 386
- 4 days ago
- CVE-2025-24071_PoC
- CVE-2025-24071: NTLM Hash Leak via RAR/ZIP Extraction and .library-ms File
-
-
- 207
- 1 day ago
- CVE-2025-32023
- PoC & Exploit for CVE-2025-32023 / PlaidCTF 2025 "Zerodeo"
-
-
- 396
- 6 days ago
- ColorOS-CVE-2025-10184
- ColorOS短信漏洞,以及用户自救方案
-
-
- 180
- 6 days ago
- POC-CVE-2025-24813
- his 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.
-
-
- 256
- 15 minutes ago
- CVE-2025-55182-advanced-scanner-
-
-
-
- 357
- 1 hour ago
- Next.js-RSC-RCE-Scanner-CVE-2025-66478
- A command-line scanner for batch detection of Next.js application versions and determining if they are affected by CVE-2025-66478 vulnerability.
-
-
- 198
- 4 days ago
- CVE-2025-30208-EXP
- CVE-2025-30208-EXP
-
-
- 73
- 6 days ago
- cve-2025-8088
- Path traversal tool based on cve-2025-8088
-
-
- 163
- 1 day ago
- CVE-2025-26125
- ( 0day ) Local Privilege Escalation in IObit Malware Fighter
-
-
- 153
- 8 days ago
- CVE-2025-21756
- Exploit for CVE-2025-21756 for Linux kernel 6.6.75. My first linux kernel exploit!
-
-
- 136
- 27 days ago
- CVE-2025-32433
- CVE-2025-32433 https://github.com/erlang/otp/security/advisories/GHSA-37cp-fgq5-7wc2
-
-
-
-
-