Pulls the current CISA KEV catalog directly from GitHub, filters to OT-relevant vendors, and attempts a live EPSS enrichment — no manual CSV downloads required.
Not yet fetched
1 · OT Vendor Filter
One vendor keyword per line. KEV entries are matched case-insensitively against the vendor/project field. Edit freely — this list is not exhaustive.
0
OT-Relevant CVEs
0
Patch Now
0
This Sprint
0
Monitor
0
Known Ransomware Use
0
Past BOD Due Date
2 · Results
Click "Fetch latest KEV data" to pull the current catalog and filter it.
Proxy fallback (for EPSS and/or NVD)
Direct browser access to this source was blocked (CORS). Two ways around it — this one proxy works for both EPSS and NVD:
Option A — deploy a free generic proxy (~2 minutes, Cloudflare Workers):
export default {
async fetch(request) {
const url = new URL(request.url);
const target = url.searchParams.get("target");
if (!target) return new Response("Missing ?target= param", { status: 400 });
const res = await fetch(target);
const body = await res.text();
return new Response(body, {
headers: {
"content-type": res.headers.get("content-type") || "application/json",
"access-control-allow-origin": "*"
}
});
}
};
Paste that into a new Worker at workers.cloudflare.com (free tier), copy its URL, and paste it below. It forwards to whatever URL you give it — same proxy handles both EPSS and NVD.
Option B — paste a manually downloaded EPSS CSV (from first.org/epss/data):