CVE-2026-35616 CrowdStrike LogScale · LogScale

Detect CVE-2026-35616 — Fortinet FortiClient EMS Improper Access Control Exploitation in CrowdStrike LogScale

Detects exploitation attempts targeting CVE-2026-35616, an improper access control vulnerability (CWE-284) in Fortinet FortiClient Enterprise Management Server (EMS). This vulnerability is listed in CISA's Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild. Attackers may leverage this flaw to bypass access controls on the EMS server, potentially enabling unauthorized configuration changes, endpoint agent manipulation, or lateral movement through managed endpoints.

MITRE ATT&CK

Tactic
Initial Access Persistence Privilege Escalation Lateral Movement

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName = NetworkConnectIP4 OR ProcessRollup2 OR DnsRequest
| $process_name_lower = lowercase(ImageFileName)
| $cmdline_lower = lowercase(CommandLine)
| filter(
    ($process_name_lower CONTAINS "fcems" OR $process_name_lower CONTAINS "fortiems" OR $process_name_lower CONTAINS "forticlient")
    OR ($cmdline_lower MATCHES ".*ems.*access.*denied.*" OR $cmdline_lower MATCHES ".*forticlient.*unauthori.*")
    OR (RemotePort IN [8013, 8014, 10443] AND $process_name_lower CONTAINS "forti")
  )
| groupBy([ComputerName, UserName, ImageFileName, CommandLine, RemoteAddressIP4, RemotePort], function=count(1, as=event_count))
| sort(event_count, order=desc)
| limit 200
critical severity medium confidence

CrowdStrike Falcon LogScale (CQL) query correlating FortiClient EMS process activity, network connections to EMS management ports, and command-line patterns suggestive of CVE-2026-35616 access control bypass. Groups results by host and user for rapid analyst triage.

Data Sources

CrowdStrike Falcon EDR — Process eventsCrowdStrike Falcon — Network eventsCrowdStrike Falcon — DNS events

Required Tables

#event_simpleName=NetworkConnectIP4#event_simpleName=ProcessRollup2

False Positives & Tuning

  • CrowdStrike sensor on EMS server itself generating self-telemetry matching FortiClient process names
  • Legitimate EMS management traffic from known admin workstations on documented management ports
  • FortiClient agent processes on endpoints making routine check-in connections to EMS
  • Software inventory or asset management tools enumerating Fortinet processes on managed hosts

Other platforms for CVE-2026-35616


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 1FortiClient EMS Unauthenticated API Endpoint Probe

    Expected signal: Web server access log entries on EMS showing HTTP requests to API paths from an unknown source IP, with response codes logged. Network flow records show connections from test host to EMS port 8013.

  2. Test 2FortiClient EMS Privilege Escalation via Access Control Bypass (Simulated)

    Expected signal: EMS audit log entries recording the low-privilege user's access attempts to admin-tier endpoints. Windows Security Event Log 4648 if token acquisition involved explicit credential use.

  3. Test 3FortiClient EMS Management Port Reconnaissance from External Network Segment

    Expected signal: Network IDS/IPS alerts for port scan activity targeting EMS management ports. Firewall deny logs if EMS ports are restricted. NetFlow records showing probe connections from test segment to EMS IP.

  4. Test 4FortiClient Agent Mass Policy Modification via Compromised EMS

    Expected signal: EMS audit log entry recording policy creation event with the admin token's associated username. API access log entry for POST to /api/v1/policies. Managed endpoint logs showing receipt of new policy push if EMS propagates it.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections