Cyber Threat Brief — July 30 2026
1. Cisco Secure FMC Hardcoded Password Zero-Day — CVE-2026-20316
TL;DR: Hardcoded static credentials in Cisco Secure FMC allow unauthenticated remote access to sensitive data; actively exploited as a zero-day and added to CISA KEV July 29 with an August 1 deadline.
What’s New:
- CISA KEV added July 29 with August 1 federal remediation deadline
- Cisco confirmed zero-day exploitation — attackers using static low-privilege credentials
- CVSS 5.3 base but Cisco rates High because access chains with other FMC vulns for privilege escalation
- All unpatched FMC instances exposed; no authentication required
- Third FMC vulnerability actively exploited in 2026 (after CVE-2026-20131 and CVE-2026-20079)
Actionable Intel
| Artifact | Type | ATT&CK | Log Source | Action |
|---|---|---|---|---|
| Static credential login to FMC | Exploitation | T1078.001 | FMC audit logs, /var/log/auth.log | Hunt |
| Unauthorized low-privilege FMC sessions | Lateral movement | T1078 | FMC session logs | Hunt |
| FMC API calls from unexpected IPs | Recon/exfil | T1213 | FMC access logs, firewall logs | Hunt |
| Privilege escalation post-initial access | Chaining | T1068 | FMC application logs | Hunt |
Detection
| Source | Rule | Gap |
|---|---|---|
| Splunk ESCU | None | No dedicated FMC hardcoded-credential detection; need rule for anomalous FMC logins from non-admin sources |
| Elastic | None | No FMC-specific rule; generic “Login from Unusual Source” partial |
| Sigma | None | Need rule matching FMC default/static credential authentication events |
Sources: BleepingComputer, CISA KEV, SecurityWeek, The Hacker News
2. Rails Active Storage Arbitrary File Read + RCE (KindaRails2Shell) — CVE-2026-66066
TL;DR: CVSS 9.5 unauthenticated RCE in Ruby on Rails Active Storage via crafted image uploads that abuse libvips untrusted loaders to read secret_key_base and forge signed payloads; patched July 29.
What’s New:
- Disclosed July 29 by Ethiack (André Baptista); patches for 7.2.3.2, 8.0.5.1, 8.1.3.1 released same day
- Active Storage passes untrusted uploads to libvips without disabling unfuzzed loaders — crafted MATLAB/HDF5 file reads arbitrary server files
- Leaked
secret_key_baseenables cookie/session forgery, signed Global ID abuse, and full RCE via Marshal deserialization - Default
vipsprocessor config in Rails 7+ means most modern Rails apps are vulnerable - PoC repo on GitHub (Zer0SumGam3/CVE-2026-66066-POC); researchers withheld full RCE chain but reconstruction is trivial from patch diff
Actionable Intel
| Artifact | Type | ATT&CK | Log Source | Action |
|---|---|---|---|---|
POST to /rails/active_storage/*/representations/* with crafted image | Exploitation | T1190 | Web server access logs, WAF | Hunt |
Uploads with MATLAB .mat / HDF5 file extensions or magic bytes | Exploitation | T1190 | WAF, upload inspection logs | Block |
VIPS_BLOCK_UNTRUSTED env var not set | Misconfiguration | — | App config audit | Remediate |
| Forged signed cookies / GlobalID tokens | Post-exploitation | T1550.004 | Rails application logs | Hunt |
Detection
| Source | Rule | Gap |
|---|---|---|
| Splunk ESCU | None | No Rails Active Storage rule; need URI pattern + suspicious upload content type detection |
| Elastic | None | No Rails-specific rule |
| Sigma | None | Need web server rule for crafted image uploads to variant representation endpoints |
Sources: HeroDevs, The Hacker News, Ethiack, GitHub PoC
3. VMware vCenter Dual Critical Flaws — CVE-2026-59309 / CVE-2026-59310
TL;DR: Two CVSS 9.8 vulnerabilities in VMware vCenter — authentication bypass in Directory Service and directory traversal RCE in Syslog Server — disclosed July 29 with no workarounds; patch immediately.
What’s New:
- Broadcom advisory July 29 covering five vCenter vulnerabilities; two are CVSS 9.8
- CVE-2026-59309: auth bypass in VMware Directory Service grants unauthorized vCenter access
- CVE-2026-59310: directory traversal in Syslog Server component enables arbitrary code execution
- No workarounds available — patching is the only remediation
- No ITW exploitation confirmed yet, but vCenter is a historically high-value target (cf. CVE-2023-34048, CVE-2024-37079)
Actionable Intel
| Artifact | Type | ATT&CK | Log Source | Action |
|---|---|---|---|---|
| Unauthenticated access to VMware Directory Service (port 389/636) | Exploitation | T1190 | vCenter vpxd.log, network flow | Hunt |
| Path traversal sequences in Syslog Server requests | Exploitation | T1190, T1059 | vCenter syslog.log, WAF | Hunt |
| vCenter management network exposure to untrusted segments | Misconfiguration | — | Network topology audit | Remediate |
| Unexpected admin sessions or API calls post-auth-bypass | Post-exploitation | T1078 | vCenter audit events (EID vpxd-XXX) | Hunt |
Detection
| Source | Rule | Gap |
|---|---|---|
| Splunk ESCU | None | No vCenter auth bypass or syslog traversal rule |
| Elastic | None | No vCenter-specific detection |
| Sigma | None | Need rule for anomalous VMware Directory Service authentication and syslog path traversal patterns |
Sources: Broadcom Advisory, The Hacker News, SecurityOnline
4. Fastjson 1.x Zero-Day RCE (No Patch) — CVE-2026-16723
TL;DR: CVSS 9.0 unauthenticated RCE in Alibaba Fastjson 1.x exploits type-resolution logic in Spring Boot fat JARs — no patch exists because Fastjson 1.x is EOL; active exploitation against US organizations since July 22.
What’s New:
- CISA KEV added July 27 with July 30 federal deadline (TODAY)
- Active exploitation confirmed against US financial services, healthcare, computing, and retail since July 22
- No AutoType re-enablement or gadget chain required — exploits
@typeresolution directly via@JSONTypeannotation + nested JAR class-loading - Fastjson 1.x is EOL — no patch is coming; must enable
SafeModeor migrate to Fastjson2 - Exploitation verified across Spring Boot 2.x–4.x on JDK 8–21
Actionable Intel
| Artifact | Type | ATT&CK | Log Source | Action |
|---|---|---|---|---|
JSON payloads containing @type attribute | Exploitation | T1190 | WAF, application logs | Block/Hunt |
POST requests with Content-Type: application/json containing class instantiation | Exploitation | T1059.007 | WAF, proxy logs | Hunt |
Fastjson versions 1.2.68–1.2.83 in pom.xml / build.gradle | Vulnerable dependency | — | SCA/SBOM audit | Remediate |
| Spring Boot fat-JAR deployments exposed to internet | Attack surface | — | Asset inventory | Audit |
Detection
| Source | Rule | Gap |
|---|---|---|
| Splunk ESCU | None | No Fastjson deserialization rule; need WAF/proxy rule for @type in JSON body |
| Elastic | None | No Fastjson-specific rule |
| Sigma | None | Need web application rule for Java deserialization via @type/@JSONType payloads |
Sources: The Hacker News, BleepingComputer, Imperva, CSA Briefing
5. Nimbus Manticore Deploys NightLedger Backdoor — Iran/IRGC
TL;DR: Kaspersky disclosed NightLedger, a new Windows backdoor from IRGC-linked Nimbus Manticore, alongside BridgeHead/ArcBridge WebSocket tunnelers targeting government, aviation, telecom, and financial sectors across six Middle East/Africa/South Asia nations.
What’s New:
- Kaspersky GReAT disclosure July 28; targets in Egypt, Jordan, Tanzania, Pakistan, Ethiopia, Burkina Faso
- NightLedger: DLL sideloading via signed-process search-order hijack — recon, command execution, file ops, screenshots
- BridgeHead + ArcBridge: custom WebSocket-based tunnelers converting victims into covert relay nodes
- Follows May 2026 MiniFast campaign against Western defense/aerospace — NightLedger is a separate operational track
- Tracked as UNC1549 (Mandiant), Smoke Sandstorm (Microsoft), TA455 (Proofpoint), Mirage Kitten (Kaspersky)
Actionable Intel
| Artifact | Type | ATT&CK | Log Source | Action |
|---|---|---|---|---|
| DLL sideloading via signed Windows process hijack | Initial access/execution | T1574.001 | Sysmon EID 7, EDR DLL load events | Hunt |
| NightLedger DLL masquerading as legitimate Windows library | Persistence | T1036.005 | File integrity monitoring | Hunt |
| WebSocket-based outbound tunneling (BridgeHead/ArcBridge) | C2 | T1071.001, T1572 | Proxy/firewall logs — WebSocket upgrade requests to unusual destinations | Hunt |
| Screenshot capture and file enumeration from compromised hosts | Collection | T1113, T1083 | EDR process telemetry | Hunt |
Detection
| Source | Rule | Gap |
|---|---|---|
| Splunk ESCU | None | No NightLedger-specific rule; “Detect DLLs Loaded in CScript/WScript” partial |
| Elastic | Suspicious DLL Loaded via Side-Loading (generic) | Needs NightLedger-specific DLL name/hash tuning |
| Sigma | Nextron published Nimbus Manticore sideloading detection (June 2026) | Integrate Nextron rules; gap on BridgeHead/ArcBridge WebSocket tunneler detection |
Sources: Securelist, The Hacker News, Nextron Detection
Status Updates
- CVE-2026-16812 (Arista VeloCloud Orchestrator): Federal CISA KEV deadline TODAY July 30. Active exploitation ongoing. Original brief.
- CVE-2026-12569 (PTC Windchill/FlexPLM — Cl0p): Cl0p extortion campaign ongoing via
support@cryptohox[.]com. JSP webshells andflst.txtrecon active. Original brief. - CVE-2026-6875 (Splunk RCE): Active exploitation ongoing since July 18. Two sandbox-escape gadget chains confirmed. Fortune 500 victims. Still not on CISA KEV. Original brief.