TL;DR — Cisco has confirmed that CVE-2026-76461, a maximum-severity flaw in its Secure Email Gateway, is being exploited in the wild as a zero-day. Rated CVSS 9.8 (Critical) and classified as CWE-89 (SQL injection), the bug lets an unauthenticated, remote attacker send a single specially crafted email through a vulnerable gateway, inject SQL into the appliance’s email-parsing logic, and pivot that into arbitrary command execution as root — no login, no user interaction. Cisco’s PSIRT discovered the flaw while working a support case and found it already under active attack; CISA added it to the Known Exploited Vulnerabilities catalog on 14 September 2026 with an unusually tight 17 September federal patch deadline. Fixed AsyncOS builds are available now, and any internet-reachable gateway should be treated as a live target.

CRITICALCVE-2026-76461Cisco Secure Email Gateway SQL injection → root RCECVSS 3.19.8 Critical (Cisco)VECTORCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:HWEAKNESSCWE-89 SQL injection → unauthenticated root command executionAFFECTEDSecure Email Gateway (physical/virtual/cloud): AsyncOS ≤15.5, 16.0, 16.5ATTACK VECTORNetwork — unauthenticated, no user interaction (crafted email)FIXED INAsyncOS 15.5.5-014 / 16.0.4-302 / 16.5.0-780EXPLOITEDYes — zero-day, confirmed by Cisco PSIRT (Sep 2026)CISA KEVListed — added 14 Sep 2026 (patch by 17 Sep)
At-a-glance threat summary for the Cisco Secure Email Gateway SQL-injection-to-root RCE (CVE-2026-76461).

What Is the Cisco Secure Email Gateway Flaw (CVE-2026-76461)?

The Cisco Secure Email Gateway — formerly the IronPort Email Security Appliance — is the mail-security workhorse that sits at the front door of countless enterprises, scanning inbound and outbound email for spam, phishing and malware. By design it is internet-facing and receives untrusted email from anyone, which is exactly what makes a pre-authentication flaw in it so dangerous. CVE-2026-76461 is an SQL injection vulnerability in the appliance’s email-parsing logic that an unauthenticated, remote attacker can escalate into command execution with root privileges on the underlying operating system.

Cisco rates the flaw at the near-maximum CVSS 3.1 base score of 9.8 (Critical) and classifies it as CWE-89, improper neutralisation of special elements used in an SQL command. The vector, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, tells the whole story: network-reachable, low complexity, no privileges, no user interaction, and total impact to confidentiality, integrity and availability. In plain terms, if an attacker can get an email to your gateway — which is the entire point of an email gateway — they may be able to take the box.

How the CVE-2026-76461 Exploit Works

In plain terms: the gateway reads incoming email to decide what to do with it, but it does not properly sanitise part of that message before using it in a database query. An attacker who knows this can hide malicious database instructions inside a crafted email. When the appliance parses the message, those instructions run — and because the database engine can be steered into launching operating-system commands, that database access becomes a full root shell on the machine.

Technically, Cisco attributes the root cause to insufficient validation in the email-parsing logic. An unauthenticated attacker sends a specially crafted email message containing SQL statements; the gateway concatenates attacker-controlled input into a query without neutralising it (CWE-89), so the injected SQL executes in the appliance’s database context. From there the attacker abuses database-to-OS functionality — the kind of COPY … TO PROGRAM primitive that lets a database run shell commands — to reach arbitrary command execution as root. Responsibly, neither Cisco nor the researchers have published a working exploit or the exact injectable field, and at the time of writing there is no public proof-of-concept. A representative log signature defenders can hunt for looks like this:

grep -i "COPY.*TO PROGRAM" [IronPort Text Mail Logs]

Impact Nuance: Vendor-Confirmed RCE, but Details Held Back

Two points deserve honesty rather than hype. First, the “RCE” here is a chain, not a single primitive: the vulnerability itself is an SQL injection (CWE-89), and the root-level command execution is the consequence of what that SQL access can reach on the appliance. Cisco and the security press are consistent that the end state is root command execution, but the CVSS 9.8 reflects that downstream impact rather than a memory-corruption RCE. That distinction matters for defenders modelling the bug — the entry point is the mail pipeline, not a management port.

Second, this was a true zero-day. Cisco has said its Product Security Incident Response Team (PSIRT) became aware of active exploitation in September 2026, with the flaw reportedly surfacing during a Cisco TAC support case rather than a coordinated research disclosure. Cisco has not attributed the activity to any named threat actor and has not published the scale of exploitation. What is not in doubt is the exposure: an email gateway is, by definition, reachable by the whole internet, so the population of vulnerable, internet-facing targets is large.

An email gateway exists to accept mail from strangers. A pre-auth flaw in one is not an edge case — it is the front door left ajar for anyone who can send a message.

ATTACK CHAIN1Send a specially crafted email to a vulnerable gatewayNo account and no user interaction — the gateway accepts untrusted mail by design.2Email-parsing logic fails to sanitise attacker inputInsufficient validation lets crafted content flow into a database query unescaped.3Injected SQL executes in the appliance database (CWE-89)Attacker-controlled SQL runs with the privileges of the gateway’s database engine.4Pivot SQL access into OS command execution as rootDatabase-to-shell primitives (e.g. COPY … TO PROGRAM) yield root on the appliance.5Take control: read mail, steal secrets, erase evidenceRoot on the mail gateway means access to email flow, credentials and the logs themselves.
How a single crafted email becomes root control of the Cisco Secure Email Gateway (CVE-2026-76461).

Active Exploitation of CVE-2026-76461

This is confirmed in-the-wild exploitation, not a theoretical risk. Cisco states that its PSIRT became aware of active exploitation of CVE-2026-76461 in September 2026, before a fix was public — the defining characteristic of a zero-day. According to reporting from Rapid7, SecurityWeek and Help Net Security, the flaw surfaced during a Cisco TAC support engagement, and Cisco has so far declined to name a threat actor or quantify the number of victims. There is no public proof-of-concept exploit at the time of writing, but a CVSS 9.8 pre-auth bug in a ubiquitous, internet-facing appliance is precisely the kind of target that gets reverse-engineered quickly once patches ship.

CISA added CVE-2026-76461 to its Known Exploited Vulnerabilities (KEV) catalog on 14 September 2026 and set a notably short remediation deadline of 17 September 2026 for US federal civilian agencies under Binding Operational Directive 22-01 — a three-day window that signals how seriously the exploitation is being taken. For defenders, Cisco and the security press point to appliance mail logs as the first place to look: review mail_logs for suspicious SQL patterns (notably COPY … TO PROGRAM), and inspect external network and firewall logs for unexpected uploads from the gateway or downloads from unknown infrastructure.

DISCLOSURE TIMELINESep 2026Flaw surfaces during a Cisco TAC support caseSep 2026Cisco PSIRT becomes aware of active zero-day exploitation14 Sep 2026Cisco publishes advisory + fixed AsyncOS builds; CISA adds to KEV15 Sep 2026Security press reports widely (Rapid7, SecurityWeek, Help Net)17 Sep 2026CISA BOD 22-01 remediation deadline for federal agencies
The compressed CVE-2026-76461 timeline: from a support-case discovery to a three-day federal patch deadline.

Remediation & Mitigation: Patching Cisco Secure Email Gateway

Patch now — fixed builds already exist. Cisco has released fixed AsyncOS software and, because the vulnerable code path is the mail pipeline itself, there is no complete configuration workaround. Cloud-delivered Cisco Secure Email Cloud instances are patched by Cisco, but on-premises operators must act. For the Secure Email Gateway:

  • Upgrade to a fixed AsyncOS build now — 15.5.5-014, 16.0.4-302, or 16.5.0-780 on the matching branch. Cisco flags 16.5.0-780 as the preferred target because it bundles additional hardening fixes from a companion advisory. Confirm your exact fixed version against the Cisco Security Advisory and Software Checker, which is the authoritative source for version mapping.
  • Reduce exposure where you can. The mail-receiving function must stay reachable, but tighten inbound sender/connection controls, mail-flow policies and rate limits at the edge, and ensure the appliance’s management interfaces are off the public internet. Treat this as damage-limitation, not a fix — only patching removes the flaw.
  • Hunt the mail logs. Search mail_logs for COPY … TO PROGRAM and other anomalous SQL, and review firewall/proxy logs for unexpected outbound connections or file transfers from the gateway.

If your gateway was reachable before you patched, assume compromise. Root code execution on a device that sees your entire mail flow is a catastrophic foothold, so an exposed, unpatched appliance should be treated as breached until proven otherwise:

  • Rotate every secret the gateway holds — administrator credentials, API keys, LDAP/RADIUS integration secrets, TLS certificates and any SMTP relay credentials — and force re-authentication.
  • Look for persistence and tampering — unexpected processes, cron entries, new accounts, altered mail policies, and gaps or edits in the logs (an attacker with root can rewrite the very logs you are hunting in).
  • Rebuild if compromise is confirmed. Where intrusion cannot be ruled out, reimage the appliance from a known-good release, re-apply the fix, and restore configuration from trusted backups rather than trusting a box that may already be backdoored.

Related ZeroDayHub Coverage

Cisco’s security appliances keep turning up on the wrong side of the exploitation curve — internet-exposed by design and trusted by everything behind them. We saw the same pattern in our write-up of the Cisco Secure Firewall Management Center authentication bypass (CVE-2026-20079), where an unauthenticated request became root on the box that manages an organisation’s firewalls. It runs through our coverage of the Cisco ASA vulnerability exploited in the wild (CVE-2026-20349) too — another Cisco edge device turned into an attacker’s entry point. Different products, one lesson: your edge and security appliances are prime targets, and an unpatched one is an open door.

Sources & Further Reading

ZeroDayHub reports on vulnerabilities for defensive purposes only. This article deliberately omits working exploit code and, following the vendor’s lead, withholds the component-level trigger while patching is in progress.

One response to “Cisco Secure Email Gateway SQL Injection Exploited in the Wild – CVE-2026-76461”

  1. […] punishing run of critical, actively exploited flaws. CVE-2026-76460 arrived in the same week as the Cisco Secure Email Gateway SQL injection zero-day (CVE-2026-76461) — two Cisco products under active attack at once. It also echoes the Cisco Secure Firewall […]

Leave a Reply

Trending

Discover more from Zerodayhub

Subscribe now to keep reading and get access to the full archive.

Continue reading