CVE-2026-20131

Cisco FMC/SCC Deserialization RCE Exploitation (CVE-2026-20131)

Detects exploitation of CVE-2026-20131, a deserialization of untrusted data vulnerability in Cisco Secure Firewall Management Center (FMC) and Cisco Security Cloud Control (SCC) Firewall Management. Successful exploitation allows unauthenticated or authenticated remote attackers to execute arbitrary commands on the underlying OS. This CVE is listed in CISA's Known Exploited Vulnerabilities catalog.

Vulnerability Intelligence

KEV — Known Exploited

Affected Software

Vendor
Cisco
Product
Secure Firewall Management Center (FMC)

Weakness (CWE)

Timeline

Disclosed
March 19, 2026

CVSS

Unscored
Write-up coming soon

What is CVE-2026-20131 Cisco FMC/SCC Deserialization RCE Exploitation (CVE-2026-20131)?

Cisco FMC/SCC Deserialization RCE Exploitation (CVE-2026-20131) (CVE-2026-20131) maps to the Initial Access and Execution and Lateral Movement tactics — the adversary is trying to get into your network in MITRE ATT&CK.

This page provides production-ready detection logic for Cisco FMC/SCC Deserialization RCE Exploitation (CVE-2026-20131), covering the data sources and telemetry it touches: CommonSecurityLog, AzureNetworkAnalytics_CL, DeviceNetworkEvents, Syslog, ThreatIntelligenceIndicator. The queries below are rated critical severity at medium confidence, and ship for 7 SIEM platforms — KQL, SPL, Elastic, QRadar, Sumo, YARA-L, LogScale.

MITRE ATT&CK

Tactic
Initial Access Execution Lateral Movement
Microsoft Sentinel / Defender
kusto
let suspiciousUAParts = dynamic(["java", "python-requests", "curl", "wget", "exploit"]);
let fmcPorts = dynamic([443, 8080, 8443]);
union
(
  CommonSecurityLog
  | where DeviceVendor == "Cisco" and DeviceProduct has_any ("Firepower", "FMC", "FireSIGHT")
  | where Activity has_any ("deserialization", "java.lang.Runtime", "ProcessBuilder", "ClassLoader", "ObjectInputStream")
  | project TimeGenerated, DeviceVendor, DeviceProduct, SourceIP, DestinationIP, Activity, AdditionalExtensions
),
(
  AzureNetworkAnalytics_CL
  | where L7Protocol_s == "https" and DestPort_d in (fmcPorts)
  | where FlowStatus_s == "A"
  | join kind=inner (
      ThreatIntelligenceIndicator
      | where Active == true and NetworkIP != ""
      | project ThreatIP = NetworkIP, ThreatType
    ) on $left.SrcIP_s == $right.ThreatIP
  | project TimeGenerated, SrcIP_s, DestIP_s, DestPort_d, ThreatType
),
(
  DeviceNetworkEvents
  | where RemotePort in (fmcPorts)
  | where InitiatingProcessFileName in~ ("java", "java.exe", "sh", "bash", "python", "python3")
  | where RemoteUrl has_any ("fmc", "firesight", "firepower")
  | project TimeGenerated, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, InitiatingProcessCommandLine
),
(
  Syslog
  | where SyslogMessage has_any ("deserialization", "ObjectInputStream", "ClassNotFoundException", "java.lang.Runtime.exec", "ProcessBuilder")
  | where Computer has_any ("fmc", "firesight", "sfmc")
  | project TimeGenerated, Computer, SyslogMessage, HostName
)
| order by TimeGenerated desc

Detects CVE-2026-20131 exploitation via Cisco FMC deserialization abuse. Correlates suspicious Java deserialization indicators in FMC logs, threat-intel-matched inbound connections to FMC ports, and process anomalies on FMC host systems.

critical severity medium confidence

Data Sources

CommonSecurityLog AzureNetworkAnalytics_CL DeviceNetworkEvents Syslog ThreatIntelligenceIndicator

Required Tables

CommonSecurityLog AzureNetworkAnalytics_CL DeviceNetworkEvents Syslog

False Positives

  • Legitimate Java-based administrative tools interacting with FMC API may trigger deserialization log entries
  • Vulnerability scanners or pen-test tooling targeting FMC management interface
  • Internal monitoring agents using Java runtimes on FMC host

Sigma rule & cross-platform mapping

The detection logic for Cisco FMC/SCC Deserialization RCE Exploitation (CVE-2026-20131) (CVE-2026-20131) above is provided in a vendor-neutral form so you can deploy it on any SIEM. The same logic is shipped here as native KQL (Microsoft Sentinel / Defender), SPL (Splunk), Elastic (Elastic Security (EQL)), QRadar (IBM QRadar (AQL)), Sumo (Sumo Logic CSE), YARA-L (Google Chronicle / SecOps), LogScale (CrowdStrike LogScale (CQL)) queries. In Sigma terms, this detection targets the following logsource:

logsource:
  category: network_connection
  product: windows

Browse the community-maintained Sigma rules for this technique:


Testing Methodology

Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Simulate Deserialization Payload Delivery to FMC-like Endpoint

    Expected signal: Network logs: POST to /j_spring_security_check with binary Content-Type. Process logs: java process spawning 'id' command. File creation event for /tmp/rce_proof.txt.

  2. Test 2Spawn Reverse Shell from Java Process (Post-Exploitation Simulation)

    Expected signal: ProcessRollup2 event showing java parent spawning bash child. NetworkConnectIP4 event for outbound TCP to attacker IP on port 4444.

  3. Test 3Drop Webshell on FMC Tomcat Webroot (Post-Exploitation Persistence)

    Expected signal: File creation event for .jsp file in Tomcat webroot. Syslog entry for file write by java or tomcat process user.

  4. Test 4Enumerate FMC Management API Without Authentication (Pre-Exploitation Recon)

    Expected signal: Web server access logs showing GET/POST to /api/fmc_platform/ and /api/fmc_config/ from an external IP. 401 or 200 responses logged.

Unlock Pro Content

Get the full detection package for CVE-2026-20131 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections