Top/Articles/CISA KEV Dashboard in Japanese — Browse the Actively Exploited Catalog
cisa-kev-dashboard-ja-cover-en

CISA KEV Dashboard in Japanese — Browse the Actively Exploited Catalog

Browse CISA's Known Exploited Vulnerabilities catalog (1,603 entries) in a Japanese-localized dashboard: full-text search, vendor filtering, Japan-market vendor filter, and ransomware-related extraction. Free, browser-only, no signup. Each CVE deep-links to NVD and our incident articles.

LabPublished May 27, 2026Last updated July 17, 2026
Table of contents
Key takeaways

Browse CISA's Known Exploited Vulnerabilities catalog (1,603 entries) in a Japanese-localized dashboard: full-text search, vendor filtering, Japan-market vendor filter, and ransomware-related extraction. Free, browser-only, no signup. Each CVE deep-links to NVD and our incident articles.

A Japanese-localized dashboard for CISA's Known Exploited Vulnerabilities catalog

The US Cybersecurity and Infrastructure Security Agency (CISA) maintains the KEV (Known Exploited Vulnerabilities) catalog — a daily-updated list of vulnerabilities that have been observed being exploited in the wild. As of today, 1,603 entries. The recent LiteSpeed cPanel flaw and the Chrome WebGPU zero-day both landed in this list within days of disclosure.

CISA's official page is an English table, sorted by date added, hard to filter by vendor or product, and gives no visibility into which entries hit Japanese-market vendors. This dashboard provides a Japanese UI with full-text search, vendor filtering, ransomware-related extraction, and a dedicated filter for Japan-market vendors. Browser-only, no signup, no install.

First try the dashboard below, then read on for "what KEV actually is," "why a Japanese version was needed," "how it works under the hood," and "what this tool cannot show."

CISA KEV Dashboard (Japanese-localized)

Loading…
50 per page

Data source: cisagov/kev-data (CISA's official GitHub mirror, US federal government work). Browser fetches around once a day; ETag matches skip the redownload.

Quick glossary — what CVE, KEV, NVD, CWE, and BOD 22-01 actually mean

If you came here without prior context on the terms CVE, KEV, NVD, CWE, or BOD 22-01, here is the one-level-down explanation. CSIRT, SOC, and SRE folks who use KEV at work can skip this section.

TermIn one sentenceA level deeper
CISAThe US federal
cybersecurity agency
Cybersecurity and Infrastructure Security Agency.
Sits under the Department of Homeland Security.
Defends federal networks and
shares threat data with the private sector.
KEVCatalog of vulnerabilities
seen in real attacks
Known Exploited Vulnerabilities.
Not "potentially dangerous"
but "actually observed being exploited",
curated by CISA.
CVEThe global
"vulnerability tracking number"
Common Vulnerabilities and Exposures.
Format: CVE-2026-8832.
Coordinated by MITRE in the US.
NVDThe US government
vulnerability database
National Vulnerability Database.
Augments each CVE with a CVSS severity score
and the list of affected product configurations.
CWECategorization of
vulnerability "types"
Common Weakness Enumeration.
e.g. CWE-79 (XSS),
CWE-89 (SQL injection).
Useful when sorting by root cause.
dueDateRemediation deadline
for US federal agencies
A per-entry deadline set by CISA.
Legally binding for US federal civilian agencies.
No direct force on Japanese companies,
but it is "the day the global defenders move".
BOD 22-01The binding directive
that created KEV
Binding Operational Directive 22-01.
Orders US federal civilian agencies to
"remediate exploited vulnerabilities by the deadline".
KEV is operated under this directive.
Ransomware-relatedObserved in
ransomware campaigns
Tracked by CISA via the
knownRansomwareCampaignUse flag.
As of today, 323 out of 1,603 entries.
0-dayExploited before
a patch existed
A common starting point for KEV entries.
Our Chrome zero-day and Laravel Livewire
articles both followed the
"0-day → KEV within days" pattern.

In short, KEV is "a roster of vulnerabilities CISA confirmed are being exploited by aggregating worldwide attack telemetry." US federal agencies must remediate within the deadline; everyone else uses it as an indicator of "where the global defender community is focusing its budget right now."

Why a Japanese-localized dashboard?

CISA's official page is an English table sorted by date added. Day-to-day work needs additional slicing:

  • "Show me only my vendors." Reading all 1,603 entries isn't realistic.
  • "Extract just the ransomware ones." Reporting to executives goes much faster with "this was used in actual ransom campaigns" as the framing.
  • "Highlight Japan-market products." A US-centric list buries Cybozu, Fujitsu, and other Japan-only vendors.
  • "Split out the overdue ones." Vulnerabilities still listed past their CISA remediation deadline have been exposed for an unusually long time.

Each of these otherwise requires manual eyeballing of the English page, which steadily drains CSIRT, SOC, and SRE time. A Japanese UI with these filters in one screen handles it.

A note on existing tooling: vulncheck and commercial vulnerability managers already wrap KEV. They are paid, gated by accounts, and need internal approval. This dashboard fits the "paste-and-glance" / "individual lookup" rung below that.

How it works — fetching CISA's official mirror straight from the browser

There is no backend. HTML and JavaScript fetch the entire KEV JSON from CISA's official GitHub mirror and do all filtering, sorting, and pagination in the browser.

StepWhat happensLibrary used
(1) FetchPull the full KEV JSON (~1.5 MB)
from the GitHub mirror, store ETag
in localStorage
fetch API
(2) Persistent cacheSave the 1,603 rows to IndexedDB;
never refetch until the ETag changes
IndexedDB
(3) FilteringFull-text / vendor / due date / ransomware /
Japan-relevance filters combine in
client-side JS
vanilla JS
(4) Japan dictionaryMatch against a hand-maintained dictionary
of Japan-only and Japan-market vendors
Hard-coded JS set

Two implementation points worth surfacing. First, CORS. CISA's cisa.gov/sites/.../known_exploited_vulnerabilities.json does not return Access-Control-Allow-Origin, which blocks browser fetches. The same data is published by CISA themselves at github.com/cisagov, served by GitHub with access-control-allow-origin: *, so this dashboard fetches from there. Data integrity is verified by comparing catalogVersion and dateReleased against the canonical CISA source.

Second, the 1.5 MB first-load cost. We accept that for the initial fetch, then cache in IndexedDB. The ETag goes into localStorage, and the next visit sends an If-None-Match header. A 304 means we trust the cache. KEV adds a handful of entries per day, so re-downloads are rare.

The "Japan-only" and "Japan market" classifications live in a hand-coded JS dictionary. Because KEV is sourced from US-observed attacks, Japan-only vendors like Cybozu and Fujitsu rarely appear, while Japan-popular foreign vendors (Microsoft, Apple, Cisco, Adobe, Google) appear in large numbers. Both filters are exposed so the user picks the slice they need.

Filter behavior in detail

Text search

Substring match across CVE ID, vendor, product, vulnerability name, short description, and notes fields. Case insensitive. Multiple keywords separated by spaces become AND search (e.g. Cisco router).

Vendor filter

The dropdown is auto-populated from vendorProject values that actually appear in the catalog (about 120 vendors today). The top vendors are Microsoft (377), Apple (93), Cisco (90), Adobe (79), Google (71), Oracle (42).

Japan-only / Japan market vendors

Two layers:

  • Japan-only: Cybozu / Fujitsu / NEC / Nintendo / Panasonic / Sony / Canon / Trend Micro / Ricoh / Hitachi / Toshiba / Brother / Sharp / Epson / Buffalo / I-O DATA / ELECOM / JustSystems / Yamaha / SoftBank / Rakuten / IIJ / Bandai Namco / Konica Minolta (exact match, 25 vendors)
  • Japan market presence: Microsoft / Apple / Cisco / Google / Adobe / Oracle / VMware / Fortinet / F5 / Citrix / Atlassian / Apache / Linux / Synology / QNAP / Ivanti / Palo Alto Networks / SonicWall / TP-Link / D-Link / Zoho / PostgreSQL / WordPress (exact match, 23 vendors)

The dictionary is hand-maintained in the page source. Drop a comment if a vendor you care about is missing.

Ransomware-related / Past due

The ransomware filter shows entries CISA flagged knownRansomwareCampaignUse: "Known". The past-due filter selects entries where dueDate is earlier than today — strictly meaningful for US federal agencies, but useful elsewhere as a "the world's defenders should have moved by now" marker.

What this dashboard cannot show

Worth listing the blind spots so the tool is not over-trusted:

  • ? Undisclosed or unobserved vulnerabilities. KEV entries land after exploitation has been confirmed. The zero-day window itself is unprotected.
  • ? Registration lag. CISA typically takes days to weeks from intelligence gathering to publication. "Not in KEV" is not "safe."
  • ? Low coverage for Japan-only vendors. KEV is sourced from US-observed attacks; Japan-only products like Cybozu and Fujitsu are under-represented. Pair this with JPCERT/CC and IPA advisories.
  • ? Impact details require NVD. KEV is about the "it was exploited" fact; CVSS scores and affected version ranges live on NVD. Each row deep-links to NVD.
  • ? Matching against your own assets is a separate job. Whether a flagged CVE actually exists in your environment requires asset-inventory reconciliation. This tool only makes catalog browsing efficient.

Linking past incident articles to KEV entries

Several of our recent CVE incident articles have a KEV entry. Some were "already in KEV at publication," others "added to KEV shortly after our write-up."

WhenIncidentCVEArticle
2026-07SonicWall SMA1000 under active attack
(unauth SSRF + admin code exec, fed deadline 7/17)
CVE-2026-15409 /
15410
SonicWall article
2026-07SharePoint Server priv-esc added to KEV
(fixed by the July update, exploited)
CVE-2026-56164SharePoint article
2026-06UniFi OS unauthenticated root takeover
(chained RCE, KEV-listed)
CVE-2026-34908 /
34909 / 34910
UniFi
2026-06Chrome V8 zero-day
(exploited, 5th of 2026)
CVE-2026-11645Chrome
2026-06Cisco SD-WAN Manager
privilege escalation (exploited)
CVE-2026-20245Cisco
2026-06Arista EOS tunnel
mis-decapsulation (exploited)
CVE-2026-7473NVD (no standalone article)
2026-06Check Point VPN auth bypass
(Qilin ransomware, exploited)
CVE-2026-50751Check Point
2026-06SolarWinds Serv-U unauth DoSCVE-2026-28318SolarWinds
2026-06LiteLLM exploited (KEV = SQLi)CVE-2026-42208LiteLLM
2026-05LiteSpeed cPanel pluginCVE-2026-48172LiteSpeed
2026-05Drupal unauthenticated takeoverCVE-2026-9082Drupal
2026-04Chrome WebGPU zero-dayCVE-2026-5281Chrome
2026-04Laravel Livewire nation-state abusesee articleLaravel
2025-12F5 BIG-IP past-deadlineCVE-2025-53521F5

For the dependency-side of supply chain attacks, pair this with our OSS Supply Chain Scanner: your project's dependency vulnerabilities (offensive side) plus the world's actively-exploited catalog (defensive side) in one mental view.

Roadmap and requests

Current scope ends at the present screen. Next pass under consideration:

  • RSS output of the current filter set (subscribable in CSIRT/SOC feed readers)
  • Browser Push notifications when a new KEV entry is added
  • Dynamic "currently in KEV" badge injected into our existing 28 CVE incident articles
  • Semi-automated maintenance of the Japan-only vendor dictionary, cross-referencing JPCERT/CC, IPA, and JVN feeds

Missing something useful for your workflow? Drop a comment or use the contact form.

Sources and licensing

The KEV catalog is US federal government work, not subject to US copyright, but operated by CISA. This dashboard is an independent client, not a CISA or US government service.

avatar-m-1

Makoto Horikawa

Backend Engineer / AWS / Django

Related articles

oracle-critical-patch-update-2026-08-cover-en
News

Oracle Ships 943 Patches: CVE-2026-61241 Hits Max CVSS 10.0

Aug. 19, 2026
unknown-cover-en-update
News

CVE-2026-70408: acmailer Flaw Lets Staff Accounts Become Admins

Aug. 19, 2026
vmware-vcenter-cve-cover-en
News

VMware vCenter CVE-2026-59310 Exploited: Patch Now, No Workaround

Aug. 19, 2026
manageengine-password-manager-pro-cve-cover-en
News

ManageEngine Password Manager Pro CVE-2026-11840: mind the build

Aug. 13, 2026
lxd-cve-cover-en
News

LXD hit by 11 flaws including CVE-2026-63294, only 4 affect solo hosts

Aug. 13, 2026
sap-security-patch-day-cover-en
News

SAP August 2026: A 10.0 Flaw (CVE-2026-58231) and No Japanese Advisory

Aug. 12, 2026
cisco-asa-cve-cover-en-update
News

Cisco VPN Gateways Knocked Offline: CVE-2026-20349, Scope and Fixes

Aug. 12, 2026
wordpress-plugin-update-supply-chain-cover-en-update
News

Fluent Forms Pro shipped a backdoored update for five hours: CVE-2026-73532

Aug. 7, 2026
apache-cxf-cve-cover-en-update
News

Apache CXF's 12 flaws get scored — 'low' became 9.8, and Red Hat has not moved

Aug. 6, 2026
teamcity-cve-cover-en-update
News

TeamCity CVE-2026-63077 Is Being Exploited, Exploit Code Public

Aug. 6, 2026
unknown-cover-en-update
News

24 WordPress plugin flaws: two-factor authentication itself can be bypassed (CVE-2026-15372)

Aug. 5, 2026
unknown-cover-en-update
News

10 WordPress plugin flaws, 200,000-site PrettyLinks included — all already patched (CVE-2026-9273)

Aug. 5, 2026
wordpress-plugins-2026-08-05-account-takeover-roundup-cover-en
News

Five WordPress Plugin Flaws, All Ending in Account Takeover (CVE-2026-9273)

Aug. 5, 2026
qualcomm-snapdragon-cve-cover-en
News

Qualcomm patches 11 Snapdragon flaws: CVE-2026-25289 needs no login and no tap

Aug. 5, 2026
netkids-imark-cve-cover-en
News

Two Flaws in Japan's NetKids iMark Network Monitor, and No Fixed Version Exists

Aug. 5, 2026
jetty-cve-cover-en
News

Jetty auth bypass CVE-2026-10050: non-ASCII passwords collapse to ?

Aug. 4, 2026
line-android-cve-cover-en
News

LINE for Android: viewing a profile could run code (CVE-2026-16881)

Aug. 4, 2026
unknown-cover-en-update
News

12 flaws in baserCMS, only one is traceable (CVE-2026-65875)

Aug. 3, 2026
unisoc-modem-cve-cover-en
News

8 flaws in the chip inside four phones sold in Japan (CVE-2026-21548)

Aug. 3, 2026
wordpress-plugins-2026-08-03-unauthenticated-takeover-roundup-cover-en
News

27 WordPress plugin flaws, no-login admin takeover (CVE-2026-15930)

Aug. 3, 2026
wordpress-plugins-2026-08-03-japan-made-plugin-roundup-cover-en
News

27 WordPress plugin flaws: CVE-2026-15383 hits a Japan-made plugin

Aug. 3, 2026
n-able-n-central-cve-cover-en-update
News

N-central: Patch to 2026.3.1.10 as Ransomware Follows CVE-2026-18577

Aug. 3, 2026
huggingface-transformers-cve-cover-en
News

Transformers path traversal writes files anywhere (CVE-2026-9856)

Aug. 3, 2026
pyathena-cve-cover-en
News

PyAthena SQL injection can expose other tables (CVE-2026-65321)

Aug. 3, 2026
vulncheck-2026-08-02-cve-roundup-cover-en
News

Better Auth and 4 more: 11 CVEs, all already fixed (CVE-2025-71399)

Aug. 2, 2026
wordpress-plugins-2026-08-02-abandoned-plugin-roundup-cover-en
News

27 WordPress flaws at once, six with no patch: CVE-2026-16261

Aug. 2, 2026
wordpress-plugins-2026-08-02-login-bypass-roundup-cover-en
News

Forged Apple login takes over WordPress admin: CVE-2026-8457 +2 flaws

Aug. 2, 2026
ai-engine-cve-cover-en
News

AI Engine WordPress Plugin Vulnerabilities: 3.6.6 Is Not Enough, Update to 3.7.1

Aug. 1, 2026
comfyui-cve-cover-en
News

Critical ComfyUI Flaw CVE-2026-68771 Lets Anyone Take Over the Server: Update to v0.26.0

Aug. 1, 2026
pgadmin-cve-cover-en
News

Critical pgAdmin Flaw CVE-2026-17566 Lets Users Take Over the Server: Update to v9.17

Aug. 1, 2026
azure-cosmos-db-cve-cover-en
News

Azure Cosmos DB CVE-2026-66803: Fixed by Microsoft, No Action Needed

July 31, 2026
fortinet-fortios-cve-cover-en-update
News

No victim reports after the CVE-2025-68686 deadline — and Fortinet still says 'not exploited'

July 31, 2026
cisco-fmc-cve-cover-en-update
News

Cisco FMC Hardcoded Password CVE-2026-20316 Under Active Attack

July 30, 2026
unknown-cover-en-update
News

Chrome Fixes 41 Flaws, Six Critical and Four Android-Only

July 30, 2026
unknown-cover-en-update
News

Apache Traffic Server: five more CVEs flip the ranking

July 29, 2026
wordpress-plugins-2026-07-29-payment-tampering-roundup-cover-en-update
News

No-login order tampering: nine WordPress flaws (CVE-2026-13692)

July 29, 2026
microsoft-cloud-cve-cover-en-update
News

CVE-2026-65667 Gave Teams a 10.0. Here's What Actually Needs Patching

July 29, 2026
apache-activemq-cve-cover-en
News

ActiveMQ Shut Down Without Login: CVE-2026-59878, Fix in 5.19.9/6.2.8

July 29, 2026
adobe-bridge-cve-cover-en
News

Adobe Bridge and Photoshop: 9 Flaws Fixed, CVE-2026-48395 the Worst

July 29, 2026
pglogical-cve-cover-en
News

PostgreSQL Extension pglogical: CVE-2026-50736 Superuser Escalation

July 29, 2026
dompdf-cve-cover-en
News

Dompdf: 6 Flaws Including CVE-2026-59941, PHP PDF Apps Need 3.1.6

July 29, 2026
apache-axis2-cve-cover-en
News

Axis2 CVE-2026-66713 Rates 9.8 But Only Hits a Default-Off Feature

July 29, 2026
terraform-mcp-server-cve-cover-en
News

Terraform MCP Server: Others Can Act With Your Token (CVE-2026-16498)

July 29, 2026
ibm-websphere-cve-cover-en
News

WebSphere: 14 Flaws, Server Takeover Without a Login (CVE-2026-14512)

July 29, 2026
manageengine-adaudit-plus-cve-cover-en
News

ManageEngine ADAudit Plus Unauthenticated RCE: CVE-2026-6516, CVSS 10

July 29, 2026
samsung-galaxy-cve-cover-en
News

Three Galaxy flaws exploitable with no user action, fixed in the July update (CVE-2026-21047)

July 28, 2026
cowboy-cowlib-cve-cover-en
News

RabbitMQ can be taken down with no login, and no fixed release yet (CVE-2026-59248)

July 28, 2026
elecom-router-cve-cover-en-update
News

Three flaws across seven ELECOM Wi-Fi routers and access points (CVE-2026-59764)

July 28, 2026
bouncy-castle-cve-cover-en-update
News

Bouncy Castle 1.85 fixes 32 CVEs, and no scanner will flag them

July 28, 2026
dassault-3dexperience-cve-cover-en
News

3DEXPERIENCE hit by a perfect 10.0 flaw: CVE-2026-11756 targets the designer's PC

July 28, 2026
unknown-cover-en-update
News

Eighteen WordPress plugin flaws, two with no fix at all (CVE-2026-15014)

July 28, 2026
vbulletin-cve-cover-en
News

vBulletin Forum Software Hit by Critical Flaw CVE-2026-61511: Unauthenticated Server Takeover

July 28, 2026
apache-thrift-cve-cover-en
News

Apache Thrift Hit by 5 Vulnerabilities: Traffic Eavesdropping and Service Outage Risks (CVE-2026-48144, CVSS 9.1)—Update to 0.24.0

July 27, 2026
openshift-ai-cve-cover-en
News

Red Hat OpenShift AI: in-cluster pods can impersonate any user (CVE-2026-16745)

July 23, 2026
fastjson-cve-cover-en
News

Fastjson RCE (CVE-2026-16723) puts Spring Boot apps at risk — act now

July 23, 2026
ricoh-printer-cve-cover-en
News

Ricoh Printers and MFPs Can Be Used as a Stepping Stone Into Your Network (CVE-2026-63226) — Update the Firmware if SSH Is On

July 23, 2026
check-point-smartconsole-cve-cover-en-update
News

Check Point management console can be hijacked with no login (CVE-2026-16232) — exploited in the wild, patch now

July 23, 2026
bind-cve-cover-en-update
News

DNS software "BIND" hit by nine flaws that can block sites or crash the server (CVE-2026-13321 and more) — update to 9.20.26 / 9.21.24

July 23, 2026
oracle-critical-patch-update-2026-07-cover-en-update
News

Oracle July 2026 CPU: 1,449 fixes and ten 10.0 unauth takeover flaws

July 22, 2026
tenable-security-center-cve-cover-en-update
News

Four critical flaws in Tenable Security Center: CVE-2026-64878 et al. — post-login takeover, update to 6.8.0

July 22, 2026
solarwinds-serv-u-cve-cover-en-update
News

SolarWinds Serv-U: 15 flaws fixed in 2026.3 (CVE-2026-28302 et al.)

July 22, 2026
home-assistant-cve-cover-en-update
News

Home Assistant: 2026.6.0 is not enough, CVE-2026-64824 needs 2026.7.0

July 22, 2026
ninja-forms-cve-cover-en-update
News

Ninja Forms: seven flaws, one lets buyers pay zero. Update to 3.15.0

July 22, 2026
vmware-avi-load-balancer-cve-cover-en
News

Unauthenticated takeover flaw in VMware Avi Load Balancer: CVE-2026-47865 — patch to 32.1.2 now

July 18, 2026
prestashop-cve-cover-en
News

Perfect-10 unauthenticated takeover in PrestaShop's search module: CVE-2026-54159 — update ps_facetedsearch to 4.0.4

July 18, 2026
wordpress-core-cve-cover-en-update
News

WordPress core flaws CVE-2026-60137 / CVE-2026-63030: update now

July 18, 2026
cursor-cve-cover-en
News

Just opening a repo in Cursor can hijack a Windows PC: CVE-2026-63093, and there's still no official fix

July 18, 2026
openclaw-cve-cover-en
News

Takeover-enabling flaws in the popular self-hosted AI agent OpenClaw, plus no-login impersonation in its checker: CVE-2026-62241 and 9 more — update now

July 17, 2026
zoom-windows-cve-cover-en
News

Account-takeover flaw in Zoom's Windows apps, no login or interaction needed: CVE-2026-53412 — update to the latest version

July 17, 2026
docling-cve-cover-en
News

Document-to-AI tool Docling hit by a string of flaws: crafted documents or URLs can leak internal information — CVE-2026-44023 and 7 more, update now

July 17, 2026
wg-easy-cve-cover-en
News

WireGuard Easy (wg-easy) flaw lets attackers steal VPN connection details — dangerous if the admin panel is exposed: CVE-2026-63089, no stable fix released yet

July 17, 2026
grafana-oncall-cve-cover-en
News

Grafana OnCall (open-source) can be fully taken over without login — and no patch is coming: CVE-2026-63087, stop using it and migrate

July 17, 2026
apache-tomcat-cve-cover-en
News

Tomcat CVE-2026-34486 Is Under Attack: Only Three Builds Affected, Deadline August 7

July 16, 2026
sonicwall-sma-cve-cover-en-update
News

SonicWall SMA1000 victims are being cold-called by fake 'helpers' — CVE-2026-15409

July 15, 2026
kfc-nichirei-supply-chain-cover-en-update
News

KFC Japan: Shortages and Closures Across All Stores — Cause Is Unauthorized Access at Nichirei

July 15, 2026
microsoft-patch-tuesday-cover-en-update
Roundup

Microsoft Patch Tuesday August 2026: Two Things to Apply First

July 15, 2026
ssl-vpn-ransomware-corporate-response-cover-en
Roundup

One VPN, and a Company's Financial Close Stopped: How a Cyberattack Halts Securities Filings, and How to Defend

July 14, 2026
wordpress-plugins-2026-07-13-critical-vulnerabilities-roundup-cover-en-update
News

28 Takeover Flaws Hit WordPress Add-ons at Once, Two of Them a Perfect 10.0 — Full Plugin List and Fixes (July 13, 2026)

July 13, 2026
cve-digest-2026-07-13-cover-en
News

July 13, 2026 Security Vulnerability Roundup: Takeovers in a Wireless Router and Industrial Gear — Does It Affect You?

July 13, 2026
cve-digest-2026-07-12-cover-en
News

July 12, 2026 Security Vulnerability Roundup: AI-Dev Tools Flowise and Crawl4AI Allow No-Login Takeover — Does It Affect You?

July 13, 2026
unknown-cover-en-update
News

LINE freezing your iPhone? Below 26.3.0 it is a known bug

July 13, 2026
praisonai-cve-cover-en-update
News

PraisonAI gets four more CVEs, one at 10.0, all fixes shipped

July 11, 2026
cve-digest-2026-07-11-cover-en
News

July 11, 2026 Security Vulnerability Roundup: Seven WordPress Plugins Enable Admin Takeover — Does It Affect You?

July 11, 2026
miniorange-login-cve-cover-en-update
News

miniOrange login plugins need 7.8.1 — and the numbering differs

July 11, 2026
mcp-server-kubernetes-cve-cover-en-update
News

Exploit code published for mcp-server-kubernetes CVE-2026-61459 — and scanners stay silent

July 11, 2026
joomla-extensions-cve-cover-en-update
News

Four Joomla extension flaws: Balbooa Forms 2.4.1 is not enough (CVE-2026-65880)

July 11, 2026
9router-cve-cover-en-update
News

9Router default password 123456 (CVE-2026-63732): server takeover risk

July 11, 2026
intellij-idea-cve-cover-en-update
News

IntelliJ IDEA: 10.0 Remote Development hijack flaws (CVE-2026-64812) — update to 2026.2

July 11, 2026
superforms-cve-cover-en-update
News

Super Forms CVE-2026-14894: working PoCs are now public

July 10, 2026
hermes-webui-cve-cover-en
News

Popular AI Agent UI 'Hermes WebUI' Server-Takeover Flaw CVE-2026-58123 — No Password Needed, Plus API-Key Theft; Update Now

July 10, 2026
userswp-cve-cover-en
News

UsersWP's Second Flaw CVE-2026-13690 Bypasses 2FA; Update to 1.2.70

July 10, 2026
metabase-cve-cover-en-update
News

Metabase CVE-2026-72898 (CVSS 10.0) Leaked Customer Data — Patch Now

July 10, 2026
cline-cve-cover-en
News

Popular AI Coding Tool Cline Hijackable by Any Website (CVE-2026-59723): Command Execution and API Key Theft — Update to 3.0.30

July 9, 2026
repomix-ssrf-cve-cover-en
News

Critical SSRF in Repomix (CVE-2026-59702): The Popular AI Code-Packing Tool's Server Could Leak Cloud Keys — Update to 1.14.1

July 9, 2026
fortinet-fortisandbox-cve-cover-en-update
News

Five unauthenticated FortiSandbox flaws, two exploited in the wild

July 8, 2026
citrix-netscaler-cve-cover-en
News

Citrix NetScaler Leaks Data Before Login (CVE-2026-8451): 'CitrixBleed' Is Back and Under Active Attack

July 8, 2026
oracle-ebs-cve-cover-en
News

Oracle E-Business Suite Can Be Hijacked Without a Password (CVE-2026-46817): Actively Exploited, Patch Now

July 8, 2026
cve-digest-2026-07-07-cover-en
News

July 7, 2026 Security Vulnerability Roundup: Dell, Red Hat, Kubernetes Infra and More — Does It Affect You?

July 8, 2026
cve-digest-2026-07-08-cover-en
News

July 8, 2026 Security Vulnerability Roundup: Plesk, ArcGIS, Self-Hosted AI Tools and More — Does It Affect You?

July 8, 2026
joomla-page-builder-cve-cover-en-update
News

SP Page Builder for Joomla Hit by 4 New Flaws (CVE-2026-65766 and More): Data-Leak Risk, Update to 6.7.1

July 8, 2026
gitea-cve-cover-en
News

Self-hosted Git "Gitea" hit by admin-takeover flaw: CVE-2026-20896 and 8 more, update to 1.26.4

July 4, 2026
sharepoint-cve-cover-en-update
News

On-Prem SharePoint Takeover With No Login — CVE-2026-50522 & More, Patch Now

July 2, 2026
unknown-cover-en-update
News

CVE-2025-62593: One Web Page Can Hijack a Ray Developer's Laptop

July 2, 2026
unknown-cover-en-update
News

CWP takeover flaw CVE-2026-57517: exploit code is public

July 2, 2026
bmc-control-m-cve-cover-en
News

Critical Flaw in BMC Control-M (CVE-2026-10539): Server Takeover With No Password — Update to 9.0.21.300

July 1, 2026
ultravnc-cve-cover-en
News

UltraVNC: 3 Critical Flaws (CVE-2026-7840) — Repeater Takeover With No Password, Update to 1.8.2.4

July 1, 2026
ibm-db2-cve-cover-en
News

Pre-Auth RCE in IBM Db2 (CVE-2026-10109): Patch the Core Database Now

July 1, 2026
unknown-cover-en-update
News

Conductor CVE-2026-58138: PoC is public, no confirmed attacks yet

July 1, 2026
adobe-coldfusion-cve-cover-en-update
News

Adobe ColdFusion Flaw Now Exploited in Attacks — CVE-2026-48282, Seven 10.0s, Patch Now

July 1, 2026
simplehelp-cve-cover-en
News

Critical Auth-Bypass in SimpleHelp (CVE-2026-48558, CVSS 10): Attackers Can Take Over Every Managed PC — Now in CISA KEV, Update to 5.5.16

June 30, 2026
kestra-cve-cover-en-update
News

Kestra Now Has Seven Known Flaws, None Fixed in Any Stable Build

June 27, 2026
mise-cve-cover-en
News

mise Security: Entering a Repo Folder Can Run an Attacker's Command — Keep It Updated

June 27, 2026
revive-adserver-cve-cover-en
News

Code-execution flaw in ad server Revive Adserver (CVE-2026-50741): update to 6.0.8

June 26, 2026
ptc-windchill-cve-cover-en
News

Max-Severity Flaw in Manufacturers' Design-Data Software PTC Windchill: Patch Now (CVE-2026-12569)

June 26, 2026
cisco-unified-cm-cve-cover-en-update
News

Cisco Unified CM CVE-2026-20230: attackers are dropping webshells

June 26, 2026
dynabook-toshiba-driver-cve-cover-en-update
News

CVE-2026-56129: Toshiba's Unpatched Driver Loads on Windows 11

June 25, 2026
quest-netvault-cve-cover-en-update
News

10 Flaws in Quest NetVault Backup: What CVE-2026-9787 Really Does

June 25, 2026
appsmith-cve-cover-en
News

Reverse-Proxy Takeover Flaw in Low-Code Platform Appsmith (CVE-2026-55454) — Update to v2.1

June 25, 2026
cacti-cve-cover-en-update
News

Cacti CVE-2026-39893 lets attackers dump the database with no login

June 25, 2026
rocketchat-cve-cover-en
News

Three Unauthenticated Takeover Flaws in Team Chat Rocket.Chat (CVE-2026-45688 and More) — Update Now

June 25, 2026
gogs-cve-cover-en
News

Self-Hosted Git Service Gogs: Six Flaws Fixed in 0.14.3

June 25, 2026
mastodon-cve-cover-en
News

The Mastodon Flaw That Turns the Server Into a Stepping Stone: Which Versions Are Safe

June 25, 2026
jellyfin-cve-cover-en
News

Two File-Write Flaws in Self-Hosted Media Server Jellyfin (CVE-2026-48793 and More) — Update to v10.11.10

June 25, 2026
ghost-cve-cover-en-update
News

Ghost CVE-2026-53943: update target corrected from 6.37.0 to v6.54.1

June 25, 2026
rclone-cve-cover-en-update
News

Rclone: update to v1.74.4 — six more flaws after CVE-2026-49980

June 25, 2026
warp-cve-cover-en
News

Warp Terminal Security Flaws: Which Version Is Safe to Run

June 25, 2026
feast-cve-cover-en
News

Unauthenticated Flaws Pile Up in ML Feature Store Feast: Server Takeover and Arbitrary File Write (CVE-2026-56121 & CVE-2026-23537) — Update to v0.63.0

June 25, 2026
capgo-cve-cover-en
News

Many Flaws in Capacitor Live-Update Service Capgo (CVE-2026-56237 and More) — Update to v12.128.2 Now

June 24, 2026
ultimate-member-cve-cover-en
News

Ultimate Member Admin-Takeover Flaw: Safe From Version 2.12.0 On

June 24, 2026
geovision-gvio-box-cve-cover-en
News

GeoVision GV-I/O Box 4E Takeover Flaws Are Fixed in Firmware v2.12

June 24, 2026
style-dictionary-cve-cover-en-update
News

Style Dictionary: 5.4.4 Isn't Enough, Update to 5.5.1 (CVE-2026-54639)

June 24, 2026
manageengine-ad360-sso-account-takeover-cve-cover-en-update
News

ManageEngine CVE-2026-11374: Hard to Exploit, but Patching Isn't Enough

June 23, 2026
langflow-cve-2026-10561-cover-en-update
News

Langflow: all 24 flaws are fixed in 1.11.0, and CVE-2026-19297 makes 25

June 23, 2026
siyuan-cve-2026-56395-56397-bazaar-xss-rce-cover-en-update
News

SiYuan MCP Endpoint Unauthorized Access: CVE-2026-66012, Fix in v3.7.2

June 22, 2026
prefect-cve-2026-5366-git-argument-injection-rce-cover-en
News

Server takeover flaw in Prefect (CVE-2026-5366): update to the latest

June 21, 2026
flowise-cve-2024-58351-overrideconfig-rce-cover-en-update
News

Flowise: 26 flaws in one day, CVE-2026-70477 — update to 3.1.4+

June 21, 2026
uefi-secure-boot-bypass-jvnvu93024090-signed-apps-cover-en-update
News

Acer, Toshiba and More: A Secure Boot Hole That Never Gets Revoked

June 19, 2026
signalrgb-kernel-driver-cve-2026-8049-8050-byovd-privesc-cover-en-rewrite
News

Is SignalRGB Safe? Its Driver Flaws Are Fixed. What to Check Now

June 18, 2026
picklescan-cve-2026-3490-detection-bypass-8-flaws-cover-en
News

Picklescan Can Be Bypassed: 8 Flaws Let Malicious AI Models Pass as Safe (CVE-2026-3490), Update to v1.0.4

June 18, 2026
joomla-jce-cve-2026-48907-unauth-rce-cover-en-update
News

Joomla JCE takeover flaw CVE-2026-48907: update to 2.9.99.9

June 17, 2026
the-events-calendar-cve-2026-49772-unauth-sql-injection-cover-en
News

Data-Theft Flaw in WordPress 'The Events Calendar', Fixed in 6.16.3

June 16, 2026
zyxel-gs1900-cve-2026-7273-buffer-overflow-rce-cover-en
News

Zyxel GS1900 Switch Takeover Flaw CVE-2026-7273: Patch 10 Models Now

June 16, 2026
i18next-cve-2026-48713-48714-prototype-pollution-cover-en
News

i18next Add-ons i18next-fs-backend and i18next-http-middleware: Two Unauthenticated Flaws, Fixed in 2.6.6 / 3.9.7

June 16, 2026
wordpress-plugins-june-2026-critical-vulnerabilities-roundup-cover-en
News

WordPress Plugin Vulnerabilities: Easy Invoice and GeekyBot Are Fixed in the Latest Versions

June 16, 2026
spring-ai-cve-2026-47835-vector-store-query-injection-cover-en
News

Spring AI Vector Store Query Injection: Affected Versions and the Safe Update

June 16, 2026
cisco-sd-wan-manager-cve-2026-20262-arbitrary-file-write-cover-en-update
News

No attacks on Cisco SD-WAN's five new flaws, and CVE-2026-20310 is 9.1 not 9.9

June 16, 2026
fortra-boks-cve-2026-9862-autoregisterd-command-injection-cover-en
News

Takeover Flaw in the PAM Tool Fortra BoKS: CVE-2026-9862, Update to s-9.0.0.5 / s-8.1.0.23 Now

June 16, 2026
woo-pdf-invoice-builder-cve-2026-52704-unauth-rce-cover-en
News

Max-Severity Takeover Flaw in a WooCommerce Invoice Plugin: CVE-2026-52704, Update to 2.0.9 Now

June 16, 2026
foxit-ai-cve-2026-12057-pdf-javascript-rce-cover-en
News

Takeover Flaw in Foxit's AI PDF Tool: CVE-2026-12057, a Crafted PDF Can Lead to Remote Code Execution

June 15, 2026
major-hacker-ransomware-groups-directory-cover-en
Roundup

Hacker and Ransomware Groups Explained: Qilin, Anonymous, and Attacks on Japan

June 15, 2026
litespeed-cpanel-cve-2026-54420-symlink-root-second-cover-en
News

LiteSpeed cPanel Plugin: 2nd Takeover Flaw CVE-2026-54420, Fix v2.4.8

June 14, 2026
naxclow-cheap-wifi-camera-doorbell-takeover-cve-2026-28742-cover-en-update
News

Cheap Wi-Fi Cameras Hijacked, Still No Fix: CVE-2026-28742

June 13, 2026
netty-dns-cache-poisoning-cve-2026-45674-45673-47691-cover-en-update
News

Netty: 3 DNS Cache Poisoning Flaws and 20+ July CVEs, Fixed in 4.1.136

June 13, 2026
gitlab-security-release-cve-2026-6552-account-takeover-cover-en
News

GitLab Vulnerability Roundup: Self-Managed Servers Should Be on 19.1.2 or Later

June 11, 2026
oracle-peoplesoft-cve-2026-35273-unauth-rce-emergency-cover-en-update
News

ShinyHunters confirmed behind PeopleSoft CVE-2026-35273

June 11, 2026
cisco-sd-wan-manager-cve-2026-20245-root-privesc-cover-en-update
News

Cisco SD-WAN CVE-2026-20245: Three Products Hit, Attack Timeline Out

June 10, 2026
chrome-zero-day-cve-2026-11645-v8-cover-en
News

Chrome and Edge V8 Zero-Day: Fixed Versions and Current Status

June 10, 2026
ivanti-sentry-cve-2026-10520-10523-unauth-rce-cover-en
News

Ivanti Sentry CVE-2026-10520 Exploited (KEV): Patch the 10.0 RCE Now

June 10, 2026
apache-http2-bomb-cve-2026-49975-ai-discovered-dos-cover-en-rewrite
News

Apache HTTP Server HTTP/2 Bomb: Affected Versions and the 2.4.68 Fix

June 9, 2026
check-point-vpn-cve-2026-50751-ikev1-auth-bypass-qilin-cover-en-0707
News

The Security Risks of Outdated VPN Protocols Like IKEv1 (and the CVE-2026-50751 Attack, Explained)

June 9, 2026
litellm-cve-2026-42271-mcp-command-injection-unauth-rce-cover-en-update
News

LiteLLM CVE-2026-42271: 1.83.7 isn't enough, upgrade to 1.84.0+

June 9, 2026
markdown-preview-enhanced-cve-2026-49492-49493-50733-vscode-rce-cover-en
News

Markdown Preview Enhanced Vulnerabilities: All Fixed as of 0.8.30, Update If Older

June 6, 2026
solarwinds-serv-u-cve-2026-28318-kev-dos-cover-en
News

SolarWinds Serv-U Flaw Lets Attackers Crash the Service: CVE-2026-28318, Now Exploited

June 6, 2026
7-zip-cve-2026-48095-ntfs-heap-overflow-rce-cover-en
News

7-Zip Take-Over Flaws Fixed in 26.02: Affected Versions and How to Update

June 6, 2026
tp-link-tapo-cve-2026-34126-bluetooth-cleartext-setup-cover-en
News

Tapo D100C, L535E and P300 Leak Setup Data Over Bluetooth (CVE-2026-34126) — Update Now

June 5, 2026
bartender-cve-2026-25550-net-remoting-rce-cover-en
News

Unauthenticated Takeover in Label Software BarTender (CVE-2026-25550): Legacy 2010/2016/2019 at Risk

June 5, 2026
tautulli-cve-2026-43986-plex-monitor-takeover-cover-en-update
News

Tautulli Vulnerabilities: v2.17.2 Is the Minimum Safe Version

June 5, 2026
openstack-mistral-cve-2026-41283-policy-bypass-rce-cover-en
News

Critical Takeover Flaw in OpenStack Mistral: CVE-2026-41283 Lets Any Logged-In User Run Code

June 4, 2026
mirasvit-cache-warmer-cve-2026-45247-magento-rce-cover-en
News

Magento Mirasvit Cache Warmer Takeover Flaw, Fixed in 1.11.12+

June 4, 2026
apache-mina-cve-2026-47065-deserialization-rce-cover-en
News

Apache MINA Takeover Flaw: The Safe Versions Are 2.2.8, 2.1.15, and 2.0.31

June 3, 2026
authentik-cve-2026-49448-multiple-vulnerabilities-cover-en
News

authentik Identity Platform: 4 Flaws, and the Releases That Fix Them

June 3, 2026
linux-cgroups-cve-2022-0492-container-escape-kev-cover-en
News

Linux container escape flaw explained: safe on kernel 5.17 and later

June 3, 2026
amazon-kiro-cve-2026-10591-file-write-tasks-json-rce-cover-en
News

Flaw in Amazon's AI dev tool Kiro, CVE-2026-10591: open a folder, run code

June 3, 2026
progress-sitefinity-cve-2026-7198-7312-multiple-vulnerabilities-cover-en
News

Five flaws in enterprise CMS Sitefinity, unauthenticated data exposure: CVE-2026-7198 and more

June 3, 2026
openshift-cve-2026-1784-route-haproxy-config-injection-cover-en
News

OpenShift Traffic-Hijacking Flaw: Affected Versions and the Fix

June 2, 2026
kirki-cve-2026-8206-account-takeover-password-reset-cover-en
News

WordPress 'Kirki' flaw CVE-2026-8206 now exploited to hijack admins on 500k sites

June 2, 2026
cloud-foundry-uaa-cve-2026-40965-ec-private-key-exposure-cover-en
News

Cloud Foundry UAA leaks its private key: CVE-2026-40965 (CVSS 10.0)

June 2, 2026
weblogic-cve-2024-21182-kev-exploited-cover-en
News

Oracle WebLogic vulnerabilities: exploited flaw and latest patch status

June 2, 2026
wordpress-plugins-gravity-forms-cve-2026-48866-42680-42682-48879-roundup-cover-en
News

Four WordPress plugins hit with critical takeover flaws: CVE-2026-48866 and 3 more

June 2, 2026
dassault-catia-teamwork-cloud-cve-2026-7858-9024-unauth-rce-cover-en
News

CATIA design-data server hijacked without login: CVE-2026-7858 (and DELMIA XSS CVE-2026-9024)

June 1, 2026
japan-enterprise-vulnerabilities-2026-jvn-roundup-cover-en-update
News

Major Vulnerabilities in Products Japanese Enterprises Use (2026)

June 1, 2026
palo-alto-pan-os-cve-2026-0257-globalprotect-auth-bypass-cover-en
News

PAN-OS GlobalProtect Authentication Bypass: Safe Versions and Exploitation Status

May 30, 2026
mautic-cve-2026-9558-twig-ssti-may-bundle-cover-en
News

Mautic Hit by Twig-Theme SSTI RCE: CVE-2026-9558, Bundled May Patch Fixes 7 CVEs

May 29, 2026
acf-extended-cve-2026-8809-admin-creation-second-round-cover-en
News

ACF Extended Admin-Hijack Returns 4 Months Later: CVE-2026-8809, Fix 0.9.2.6

May 29, 2026
oracle-cspu-may-2026-monthly-launch-cvss-10-cover-en
News

Oracle Monthly CSPU and the ORDS CVSS 10.0: Current Status and Safe Versions

May 29, 2026
samba-cve-2026-4408-check-password-script-rce-cover-en
News

Samba Vulnerabilities: Safe on 4.22.10/4.23.8/4.24.3+, Default Configs Unaffected

May 28, 2026
jupyter-server-cve-2025-61669-login-open-redirect-cover-en
News

Jupyter Server's Login Page Can Be Abused for Phishing: Update to 2.20.0

May 28, 2026
goobi-viewer-cve-2026-45083-solr-unauth-streaming-cover-en
News

Goobi Viewer Hit by Unauthenticated CVE-2026-45083: Digital Archives At Risk

May 28, 2026
pi-alert-cve-2026-44887-44888-config-injection-cover-en
News

Two Unauthenticated RCEs in Pi.Alert: CVE-2026-44887 / 44888 Hit Home Network Watchers

May 28, 2026
gladinet-triofox-cve-2026-8362-8363-8364-unauth-rce-cover-en
News

Three Critical Flaws Hit Gladinet Triofox: CVE-2026-8362 / 8363 / 8364, Enterprise File Sharing At Risk

May 28, 2026
budibase-cve-2026-46425-five-flaws-low-code-bypass-cover-en
News

Budibase Hit by Five Critical Authz Flaws: CVE-2026-46425 et al., Update to v3.39.0

May 28, 2026
dalfox-cve-2026-45087-rest-api-unauth-rce-cover-en
News

XSS Scanner Dalfox Hit by Unauthenticated RCE: CVE-2026-45087 (CVSS 10.0)

May 28, 2026
free5gc-cve-2026-44315-44326-44327-44329-44330-noauth-bypass-cover-en
News

free5GC Hit by Five Critical Auth Bypass Flaws: CVE-2026-44315/26/27/29/30

May 28, 2026
tanstack-nx-console-supply-chain-cve-2026-45321-48027-cover-en
News

TanStack and Nx Console Supply-Chain Compromise: Which Versions Are Safe Now

May 28, 2026
libvnc-cve-2026-44988-malicious-server-oob-write-cover-en
News

LibVNCClient Flaw CVE-2026-44988: Malicious VNC Server Can Hijack Your PC On Connect

May 28, 2026
ibm-aspera-cve-2026-8175-8179-asperahttpd-bof-cover-en-update
News

Four New IBM Aspera Flaws: Faspex 5 and Desktop App, CVE-2026-14958

May 28, 2026
langflow-cve-2026-7524-tar-symlink-rce-cover-en
News

Critical Langflow Flaw CVE-2026-7524: TAR Symlinks Leak JWT Secret, Chain to RCE

May 28, 2026
nec-aterm-nv26-002-nv26-003-vulnerabilities-cover-en
News

NEC Aterm Router Vulnerabilities: Fixed Firmware Versions for All 11 Affected Models

May 25, 2026
ubiquiti-unifi-bulletin-064-cover-en-update
News

UniFi hit by 25 flaws at once: cameras, door locks and routers

May 22, 2026
trendmicro-apex-one-2026-may-cover-en
News

Apex One Hit by 14 Vulnerabilities; Console Hijack Could Reach All Company PCs

May 22, 2026
guardianwall-mailsuite-rce-cover-en
News

GUARDIANWALL MailSuite Vulnerability: Affected Versions and How to Respond

May 21, 2026
linux-fragnesia-cve-2026-46300-cover-en
News

Linux Kernel 'Fragnesia' Vulnerability (CVE-2026-46300): Which Versions Are Safe and How to Patch

May 14, 2026
axios-npm-supply-chain-attack-rat-cover-en
News

Axios npm package hijacked: RAT pushed to 100M weekly downloads (2026)

April 1, 2026
teampcp-supply-chain-cascade-trivy-cover-en
News

Trivy supply-chain cascade: 4 OSS projects compromised in 10 days (2026)

March 30, 2026