CISA Sounds the Alarm: Three Actively Exploited Vulnerabilities Put Firewalls, Windows Systems, and Business Intelligence Data at Risk + Video

Listen to this Post

Featured ImageA New Wave of Exploitation Demands Immediate Attention

The cybersecurity landscape is once again flashing red as the U.S. Cybersecurity and Infrastructure Security Agency (CISA) adds three vulnerabilities to its Known Exploited Vulnerabilities (KEV) catalog. The flaws affect Cisco security appliances, the Windows networking stack, and Metabase, a widely used business intelligence platform that can sit directly in front of an organization’s most valuable databases.

This is not simply another list of CVEs for security teams to archive and review later. CISA’s KEV catalog is specifically designed to highlight vulnerabilities that attackers are already exploiting in real-world campaigns. That distinction matters because organizations facing an actively exploited vulnerability are no longer dealing only with theoretical risk. The question becomes how quickly they can reduce exposure.

The three vulnerabilities also demonstrate how dramatically attack paths can differ. One can crash a firewall remotely, another can potentially provide SYSTEM-level control of Windows machines, and the third can turn a vulnerable analytics platform into a gateway to sensitive enterprise databases.

For security teams, administrators, and infrastructure owners, the message is uncomfortable but clear: patching these vulnerabilities should be treated as an operational priority, not a routine maintenance task.

The Three Vulnerabilities Added to

CISA added CVE-2026-20349, CVE-2026-68820, and CVE-2026-72898 to its Known Exploited Vulnerabilities catalog.

Although they affect completely different technologies, all three share one dangerous characteristic: they have moved beyond the realm of purely theoretical vulnerabilities and into the territory of known exploitation.

That makes them especially important for organizations operating internet-facing infrastructure, Windows environments, or self-hosted Metabase deployments.

CVE-2026-20349: Cisco Firewalls Can Be Forced to Crash

The first vulnerability, CVE-2026-20349, affects Cisco Secure Firewall ASA and Firepower Threat Defense (FTD) software.

The flaw can allow an unauthenticated remote attacker to crash an affected device and trigger a denial-of-service condition.

That is particularly concerning when the vulnerable firewall is responsible for protecting remote employees, VPN users, branch offices, applications, or critical internal networks.

How the Cisco Vulnerability Works

The vulnerability is associated with insufficient error checking when the affected software processes HTTP requests.

An attacker can exploit the flaw by sending a specially crafted HTTP request to the Remote Access SSL VPN service.

If the attack succeeds, the firewall can be forced to reload.

That sounds deceptively simple, but the consequences can be significant.

A firewall reload can interrupt remote access, terminate VPN sessions, disrupt network connectivity, and potentially create a temporary security and availability crisis for an organization.

Why a Firewall Crash Is More Than an Availability Problem

At first glance, CVE-2026-20349 appears to be primarily a denial-of-service issue.

However, security teams should avoid thinking about availability in isolation.

A firewall is frequently a critical dependency for authentication, VPN connectivity, segmentation, traffic inspection, and access to internal resources. If attackers repeatedly force the device to reload, administrators may be forced into emergency recovery procedures while legitimate users lose access to essential services.

Repeated disruption can also become a distraction.

An attacker does not necessarily need to keep the firewall offline permanently. Even intermittent disruption can create confusion, generate emergency workload, and potentially provide cover for other malicious activity.

CVE-2026-68820: Windows Winsock Driver Under Attack

The second vulnerability is arguably even more dangerous from a system-compromise perspective.

CVE-2026-68820 is a use-after-free vulnerability in afd.sys, a Windows kernel-mode driver associated with the Windows Sockets API.

The vulnerability can potentially allow attackers to execute code with SYSTEM-level privileges.

That is a serious escalation of privilege.

Why afd.sys Matters

The Windows Sockets infrastructure is fundamental to network communication within Windows.

The afd.sys driver operates at the kernel level, meaning exploitation can potentially move an attacker from a relatively limited execution context toward one of the highest privilege levels available on a Windows system.

SYSTEM-level execution can provide extensive control over the operating system.

Depending on the attack chain, this could allow an attacker to manipulate processes, access sensitive files, modify security settings, establish persistence, or use the compromised machine as a launching point for additional attacks.

Microsoft Has Reported Active Exploitation

One of the most important details surrounding CVE-2026-68820 is that Microsoft has stated the vulnerability is actively exploited.

Interestingly, its CVSS assessment lists exploit maturity as “Unproven.”

Those two observations are not necessarily contradictory.

CVSS metrics and real-world exploitation intelligence answer different questions. A vulnerability can have an uncertain or limited public exploit-maturity assessment while still being observed in actual attacks.

For defenders, confirmed exploitation should carry substantially more weight than a score or maturity label viewed in isolation.

CVE-2026-72898: Metabase SQL Injection Opens a Dangerous Door

The third vulnerability is CVE-2026-72898, a SQL injection vulnerability affecting Metabase.

Metabase is used by organizations to analyze and visualize business data. That makes its security particularly important because the platform often connects directly to databases containing sensitive corporate information.

The vulnerability allows an unauthenticated attacker to inject arbitrary SQL into the Metabase application database.

That is already serious.

But the potential consequences become much more severe when the vulnerability is considered in the context of how Metabase is deployed.

The Metabase Attack Goes Beyond SQL Injection

According to the

The company said it identified the attack, blocked the endpoints being used, and rapidly patched the vulnerability.

The real danger was not simply the initial SQL injection.

Successful exploitation could potentially provide attackers with administrative privileges over the Metabase instance.

From there, attackers could potentially modify configuration, access stored credentials for connected databases, query information available through those connections, and extract sensitive data.

That creates an enormous potential blast radius.

Why Metabase Deserves Special Attention

A business intelligence platform is rarely an isolated application.

It is usually connected to databases, data warehouses, analytics systems, dashboards, reporting infrastructure, and internal business applications.

That means compromising the analytics layer can potentially provide a bridge into the organization’s broader data environment.

Imagine an attacker compromising a dashboard platform and then discovering credentials for several connected databases.

The attacker has not merely compromised a web application.

They may have found a map of the company’s data ecosystem.

Metabase Cloud and Self-Hosted Deployments Are Different

Cloud customers received an important advantage.

According to the advisory, Metabase detected the attack, blocked the abused endpoints, and patched the vulnerable environment. Cloud instances were already running the fixed version when the advisory became public.

Self-hosted customers face a different situation.

They cannot assume that the

Administrators running affected versions need to identify their deployment, apply the appropriate fixes, review exposure, and investigate for signs of compromise.

The Credential Theft Risk Is Particularly Serious

One of the most worrying elements of a vulnerable analytics platform is credential exposure.

Business intelligence applications frequently require authentication to databases.

If credentials are stored or accessible within the application environment, a compromise could potentially transform one vulnerable server into an access point for multiple backend systems.

That is why patching alone may not be enough.

Organizations should also consider credential rotation and investigation after exploitation is suspected.

CISA’s Deadline Is Not a Suggestion

Under Binding Operational Directive 22-01, federal civilian executive branch agencies are required to remediate vulnerabilities included in CISA’s KEV catalog according to established deadlines.

For these vulnerabilities, the deadlines are particularly close.

Federal agencies are required to address the vulnerabilities by August 14, 2026, with an exception for CVE-2026-68820, which has a deadline of August 25, 2026.

For private organizations, the deadlines are not automatically binding in the same way.

But the underlying security message remains highly relevant.

If CISA is placing a vulnerability into KEV, organizations should assume that attackers have a practical reason to care about it.

Deep Analysis

Start With Asset Discovery

Before patching, security teams need to know whether vulnerable products exist inside the environment.

A simple inventory search can immediately reveal unexpected exposure.

Search Linux configuration and application directories
grep -RniE "metabase|metabase.jar" /opt /srv /var/lib 2>/dev/null

For Windows environments, administrators can inspect installed software and operating-system information through PowerShell.

Get-ComputerInfo | Select-Object WindowsProductName, WindowsVersion, OsBuildNumber

The goal is not to blindly run commands.

The goal is to establish an accurate picture of what is actually deployed.

Identify Internet-Facing Systems

Internet exposure should receive priority.

A vulnerable internal system is dangerous.

A vulnerable system directly exposed to the internet can be considerably more attractive to opportunistic attackers.

Administrators should review firewall rules, VPN services, reverse proxies, load balancers, and external DNS records.

Review listening network services on Linux
ss -tulpn

For organizations with large environments, asset-management and vulnerability-management platforms should be used instead of relying exclusively on manual checks.

Investigate Cisco VPN Exposure

For Cisco Secure Firewall deployments, administrators should identify whether the Remote Access SSL VPN service is exposed and determine whether affected software versions are running.

Review device logs for unexpected reloads, unusual HTTP requests, repeated VPN interruptions, and unexplained service instability.

Check:

– Firewall reload events

– VPN session drops

– Unusual HTTP requests

– Authentication anomalies

– Repeated crashes

– Configuration changes

A firewall repeatedly crashing without an obvious operational explanation should not automatically be dismissed as a hardware or configuration problem.

Hunt for Windows Exploitation

For CVE-2026-68820, security teams should review endpoint telemetry around suspicious processes, privilege escalation, abnormal kernel activity, and unexpected process creation.

PowerShell can help administrators examine recent system events.

Get-WinEvent -LogName System -MaxEvents 200 |
Select-Object TimeCreated, Id, LevelDisplayName, Message

Security products such as EDR platforms should be used for deeper investigation.

The most important question is not simply:

Was the patch installed?

It is:

“Was the machine compromised before the patch was installed?”

That distinction can determine whether an incident remains active.

Investigate Metabase Logs

Self-hosted Metabase administrators should inspect application and reverse-proxy logs for suspicious requests.

Look for unexpected SQL-related payloads, unfamiliar source addresses, abnormal authentication activity, administrator-account changes, and unusual database access.

Example: search common web logs for suspicious SQL-related patterns
grep -RniE "union|select|insert|update|delete|sleep|benchmark" \n/var/log/nginx /var/log/apache2 2>/dev/null

This is only a starting point.

Attackers can encode payloads, use alternate techniques, or deliberately avoid obvious keywords.

Rotate Exposed Credentials

If a Metabase environment may have been compromised, organizations should consider rotating credentials associated with connected databases.

That may include:

Database passwords

API tokens

Service-account credentials

Cloud access keys

Application secrets

Encryption-related credentials

Credential rotation should be coordinated carefully so legitimate applications are not unexpectedly disconnected.

Check for Persistence

Compromise investigations should also search for persistence mechanisms.

On Linux:

systemctl list-unit-files --state=enabled
crontab -l
find /etc/cron -type f -maxdepth 2 2>/dev/null

On Windows:

Get-ScheduledTask |
Where-Object {$_.State -eq "Ready"} |
Select-Object TaskName, TaskPath

These commands do not prove compromise.

They help investigators identify unusual scheduled tasks and services that deserve closer examination.

Patch First, Then Validate

Applying a vendor patch is essential.

But patching should be followed by validation.

Security teams should confirm:

  1. The vulnerable version is no longer installed.

2. The affected service restarted successfully.

3. External exposure is reduced.

4. Logs show no continuing exploitation.

5. Credentials are rotated where appropriate.

6. Security monitoring remains active.

7. Backup and recovery procedures still work.

The patch closes the known vulnerability.

It does not automatically erase an attacker who may already be inside.

Reduce Attack Surface

Organizations should also ask whether every exposed service needs to remain reachable from the public internet.

VPN interfaces, administrative consoles, analytics platforms, and management services should be protected with strong access controls.

Where practical, administrators should use:

VPN access restrictions

Network segmentation

MFA

IP allowlisting

Reverse proxies

Web application firewalls

EDR monitoring

Centralized logging

Least-privilege credentials

Defense in depth becomes especially important when vulnerabilities are being actively exploited.

What Undercode Say:

KEV Changes the Priority

CISA’s KEV catalog should be treated differently from a generic vulnerability database.

The presence of a vulnerability in KEV means defenders should immediately ask whether they have exposed assets.

Exploitation Matters More Than Scores

A CVSS score can help prioritize vulnerabilities, but it should never become the only decision-making mechanism.

Real-world exploitation changes the risk calculation dramatically.

The Cisco Flaw Threatens Availability

CVE-2026-20349 demonstrates that attackers do not always need to steal information to cause serious damage.

Taking down a security gateway can disrupt an entire organization’s operations.

VPN Infrastructure Is an Attractive Target

Remote access systems remain valuable targets because they sit at the boundary between the public internet and internal networks.

Any vulnerability affecting VPN infrastructure deserves immediate attention.

Windows Kernel Bugs Are Particularly Dangerous

CVE-2026-68820 is concerning because it affects a kernel-mode component.

Kernel-level vulnerabilities can potentially provide attackers with privileges far beyond those available to ordinary user processes.

SYSTEM-Level Execution Changes Everything

If exploitation leads to SYSTEM-level execution, the attacker may gain extensive control over the Windows host.

That can turn a single vulnerability into a platform for persistence and lateral movement.

Metabase Is a Different Kind of Risk

CVE-2026-72898 demonstrates why application context matters.

A SQL injection vulnerability in an isolated application is dangerous.

A SQL injection vulnerability in an application connected to numerous enterprise databases can be devastating.

Data Connectivity Creates Blast Radius

The more databases an analytics platform can reach, the more valuable it becomes to an attacker.

Organizations should therefore treat BI platforms as security-sensitive infrastructure.

Cloud Does Not Mean Zero Risk

Metabase

Cloud providers can rapidly deploy fixes across managed infrastructure.

Self-hosted customers have to perform those actions themselves.

Self-Hosted Software Requires Discipline

Running software internally provides greater control.

It also transfers responsibility for patching, monitoring, configuration, credential protection, and incident response to the organization.

Patching Is Only Step One

Organizations sometimes declare victory as soon as a vulnerable version disappears.

That is not enough when exploitation is already occurring.

Threat Hunting Must Follow Exploitation

If an asset was exposed while a vulnerability was actively exploited, administrators should investigate historical activity.

The attacker may have entered before the patch.

Credentials Deserve Special Attention

A compromised application can expose credentials that were never intended to be public.

Those credentials may remain valid even after the original vulnerability has been patched.

Network Segmentation Limits Damage

Segmentation can prevent a compromised edge system from freely communicating with every internal resource.

It is one of the most effective ways to reduce blast radius.

Logging Becomes Evidence

When an incident occurs, logs can reveal whether exploitation happened.

Organizations without centralized logging may discover too late that the evidence they needed has already disappeared.

Firewalls Should Be Monitored Like Servers

A firewall is not simply a box that forwards traffic.

It is a critical security control and should generate meaningful telemetry.

Unexpected Reloads Are Warning Signs

Repeated unexplained device reloads should trigger investigation.

Availability problems can sometimes be the visible symptom of exploitation.

Security Teams Need an Asset Map

It is impossible to patch what you do not know exists.

Asset inventory is therefore a foundational cybersecurity control.

Legacy Systems Increase Risk

Older appliances and unmanaged applications often remain exposed because organizations assume they are stable.

Attackers frequently exploit exactly those assumptions.

Attackers Look for the Weakest Door

An organization may have excellent endpoint security and still suffer a breach because an internet-facing application was overlooked.

Security is only as strong as the weakest exposed component.

CISA Deadlines Create Useful Pressure

Government remediation deadlines can force organizations to move quickly when normal patch cycles might take weeks.

That urgency is appropriate for actively exploited flaws.

Private Organizations Should Pay Attention Too

Even when a federal deadline does not legally apply to a private company, the technical threat remains.

Attackers do not distinguish between federal and private networks when scanning for vulnerable systems.

Automation Can Improve Response

Large enterprises should automate asset discovery and vulnerability correlation wherever possible.

Manual spreadsheets are not enough for modern attack surfaces.

Prioritize Internet-Facing Assets

An externally exposed vulnerable service should generally be addressed before an identical vulnerability hidden behind multiple security layers.

Context matters.

Don’t Forget Backups

If exploitation results in disruption or destructive activity, reliable backups can become the difference between recovery and prolonged downtime.

Security Requires Verification

After patching, verify that the vulnerable component is actually fixed.

Assumptions are dangerous during active exploitation.

The Human Element Still Matters

Security teams under pressure can miss simple things.

Clear procedures, ownership, escalation paths, and communication reduce that risk.

Zero-Days Can Become Known Exploits Quickly

The Metabase incident demonstrates how rapidly an unknown vulnerability can move from private exploitation into public disclosure and defensive remediation.

Disclosure Creates a Race

Once technical details become available, defenders race to patch.

Attackers race to reverse-engineer and automate exploitation.

The window between disclosure and widespread exploitation can be surprisingly small.

Attack Surface Reduction Is the Long-Term Answer

Organizations should not merely patch

They should continuously remove unnecessary internet exposure.

Least Privilege Matters

If an application does not need administrator-level database access, it should not have it.

Reducing privileges limits what attackers can accomplish after exploitation.

Monitoring Must Continue After Remediation

A patch does not end an investigation.

Security teams should continue monitoring for signs that an attacker established persistence before remediation.

The Three CVEs Tell One Larger Story

Cisco, Windows, and Metabase appear unrelated.

But together they demonstrate the modern

Speed Is Becoming a Security Control

In an environment where vulnerabilities are exploited rapidly, the time between disclosure and remediation is itself a security metric.

Organizations that patch faster generally reduce the

KEV Should Become an Operational Signal

CISA’s catalog should feed directly into vulnerability-management workflows.

When a new KEV entry appears, security teams should automatically identify affected assets, assign owners, prioritize remediation, and verify completion.

The Biggest Mistake Is Waiting

The most dangerous response to an actively exploited vulnerability is treating it like another item in a monthly patch queue.

These vulnerabilities deserve immediate attention.

✅ CISA KEV Addition

The article correctly identifies CVE-2026-20349, CVE-2026-68820, and CVE-2026-72898 as vulnerabilities added to CISA’s Known Exploited Vulnerabilities catalog. Their inclusion indicates that exploitation has been observed or otherwise meets CISA’s KEV criteria.

✅ CVE-2026-20349 Impact

The Cisco vulnerability is described as capable of allowing unauthenticated remote attackers to cause affected Secure Firewall ASA and FTD devices to reload, producing a denial-of-service condition.

✅ CVE-2026-68820 Risk

The Windows vulnerability affects the afd.sys kernel component and is described as capable of enabling SYSTEM-level code execution. Microsoft has also reported active exploitation.

✅ CVE-2026-72898 Metabase Risk

The Metabase vulnerability represents a serious SQL injection threat because successful exploitation can potentially lead to administrative control and access to credentials and connected database information.

✅ Federal Remediation Deadlines

The stated federal deadlines are August 14, 2026, for the applicable vulnerabilities and August 25, 2026, specifically for CVE-2026-68820.

Prediction

(+1) KEV-Driven Patching Will Accelerate

Organizations are likely to prioritize these vulnerabilities much faster than ordinary CVEs because their inclusion in CISA’s KEV catalog provides a clear signal of active exploitation.

(+1) Metabase Deployments Will Receive Increased Scrutiny

Self-hosted Metabase installations are likely to become a major focus for vulnerability scanning, incident response, and credential rotation as organizations evaluate whether vulnerable versions were exposed.

(+1) Windows Detection Rules Will Improve

Security vendors and defenders are likely to strengthen detection around exploitation of the Windows Winsock driver, particularly where unusual privilege escalation or kernel-level activity is observed.

(+1) VPN Security Will Remain a Top Priority

The Cisco vulnerability reinforces the importance of protecting remote-access infrastructure as organizations continue to rely heavily on VPN services.

(-1) Unpatched Internet-Facing Systems Will Remain High-Value Targets

Organizations that delay remediation could face increasing exploitation attempts as attackers identify vulnerable systems through automated scanning.

(-1) Patching Alone May Leave Some Organizations Exposed

If attackers have already compromised vulnerable systems, simply installing a patch may not remove persistence, stolen credentials, or unauthorized access established before remediation.

(+1) CISA KEV Will Become an Even Stronger Security Signal

The growing importance of actively exploited vulnerabilities suggests that organizations will increasingly integrate CISA’s KEV catalog directly into automated vulnerability-management and incident-response workflows.

The Bigger Warning Behind These Three Vulnerabilities

Three Vulnerabilities, Three Attack Paths

CVE-2026-20349 attacks the availability of network infrastructure.

CVE-2026-68820 threatens the integrity and control of Windows systems.

CVE-2026-72898 threatens the confidentiality of enterprise data.

Together, they form a powerful reminder that modern cybersecurity is not about protecting one layer of infrastructure. It is about defending the entire chain, from the internet-facing firewall to the operating system and finally to the applications that connect directly to an organization’s most valuable information.

The Real Deadline Is Now

For federal agencies, the official deadlines provide a concrete remediation schedule.

For everyone else, the more important deadline is dictated by the attacker.

When a vulnerability is already being exploited, every additional day of exposure creates another opportunity for compromise.

The organizations most likely to withstand this wave will not necessarily be those with the largest security budgets. They will be the ones that know exactly what they operate, understand what is exposed, patch quickly, rotate compromised credentials, and investigate suspicious activity before a vulnerability becomes a full-scale breach.

CISA’s latest KEV additions are therefore more than three entries in a government catalog. They are a warning that the distance between a newly disclosed vulnerability and a real-world attack is becoming dangerously short.

▶️ Related Video (72% Match):

🕵️‍📝Let’s dive deep and fact‑check.

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

References:

Reported By: securityaffairs.com
Extra Source Hub (Possible Sources for article):
https://www.quora.com/topic/Technology
Wikipedia
OpenAi & Undercode AI

Image Source:

Unsplash
Undercode AI DI v2

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeNews & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube