CVE-2026-20131 CrowdStrike LogScale · LogScale

Detect Cisco FMC/SCC Deserialization RCE Exploitation (CVE-2026-20131) in CrowdStrike LogScale

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.

MITRE ATT&CK

Tactic
Initial Access Execution Lateral Movement

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
// CVE-2026-20131 - Cisco FMC Deserialization RCE
// Detect suspicious process chains from FMC/Tomcat services or deserialization indicators
(
  event_simpleName=ProcessRollup2
  | search ParentBaseFileName IN ("java", "tomcat", "catalina.sh", "sfmcd")
    AND FileName IN ("sh", "bash", "python", "python3", "wget", "curl", "nc", "ncat", "perl")
    AND (ComputerName CONTAINS "fmc" OR ComputerName CONTAINS "firesight" OR ComputerName CONTAINS "sfmc")
  | eval risk="high - suspicious child process from FMC service"
)
OR
(
  event_simpleName=NetworkConnectIP4
  | search (LocalPort IN ("443", "8080", "8443"))
    AND (ComputerName CONTAINS "fmc" OR ComputerName CONTAINS "firesight")
    AND RemoteAddressIP4 != /^(10\.|192\.168\.|172\.(1[6-9]|2[0-9]|3[01])\.)/
  | eval risk="medium - inbound connection to FMC from non-RFC1918 source"
)
OR
(
  event_simpleName=SuspiciousRawDiskRead
  | search (ComputerName CONTAINS "fmc" OR ComputerName CONTAINS "firesight")
  | eval risk="critical - suspicious disk activity on FMC host post-exploitation"
)
| fields _time, ComputerName, FileName, ParentBaseFileName, CommandLine, RemoteAddressIP4, LocalPort, risk
| sort -_time
critical severity medium confidence

CrowdStrike Falcon NG-SIEM query for CVE-2026-20131: detects suspicious child processes spawned by FMC Java services, inbound connections from non-RFC1918 sources to FMC ports, and post-exploitation disk activity.

Data Sources

CrowdStrike Falcon EndpointCrowdStrike Network Detection

Required Tables

ProcessRollup2NetworkConnectIP4SuspiciousRawDiskRead

False Positives & Tuning

  • Legitimate Python/Bash administrative scripts run directly on FMC by authorized operators
  • FMC update mechanism spawning shell processes during patch installation
  • Monitoring agents using curl/wget for health-check callbacks

Other platforms for CVE-2026-20131


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