Detect Fortinet Multiple Products Authentication Bypass via Alternate Path or Channel (CVE-2026-24858) in IBM QRadar
Detects exploitation of CVE-2026-24858, an authentication bypass vulnerability (CWE-288) affecting multiple Fortinet products. Attackers abuse an alternate authentication path or channel — specifically SSO abuse on FortiOS — to bypass normal authentication controls and gain unauthorized access. This vulnerability is listed on CISA's Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild.
MITRE ATT&CK
QRadar Detection Query
SELECT
DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') AS event_time,
sourceip,
destinationip,
username,
QIDNAME(qid) AS event_name,
logsourcename(logsourceid) AS log_source,
UTF8(payload) AS raw_payload,
category,
severity
FROM events
WHERE
logsourcetypename(devicetype) ILIKE '%fortinet%'
OR logsourcetypename(devicetype) ILIKE '%fortigate%'
AND (
LOWER(UTF8(payload)) ILIKE '%sso%'
OR LOWER(UTF8(payload)) ILIKE '%saml%'
OR LOWER(UTF8(payload)) ILIKE '%alternate%path%'
OR LOWER(UTF8(payload)) ILIKE '%auth%bypass%'
OR LOWER(UTF8(payload)) ILIKE '%unauthenticated%access%'
)
AND eventdirection = 'L2R'
AND LOWER(UTF8(payload)) NOT ILIKE '%failed%'
AND starttime > NOW() - 86400000
ORDER BY starttime DESC
LIMIT 500 QRadar AQL query detecting successful authentication events on Fortinet devices containing indicators of SSO abuse or alternate authentication path exploitation consistent with CVE-2026-24858.
Data Sources
Required Tables
False Positives & Tuning
- Legitimate SSO authentication traffic from federated identity providers
- SAML assertion processing during normal business hours from known IdP IPs
- Fortinet product telemetry containing SSO keywords unrelated to authentication events
- Internal vulnerability scanners testing Fortinet management interfaces
Other platforms for CVE-2026-24858
Testing Methodology
Validate this detection against 3 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.
- Test 1Simulate SSO Authentication Request to Fortinet Management Interface
Expected signal: HTTP request to /remote/logincheck with SSO/SAML parameters should appear in FortiGate authentication logs and in web proxy or network monitoring logs. Source IP, timestamp, and HTTP response code should be captured.
- Test 2Enumerate Fortinet Management Interface SSO Endpoints
Expected signal: Series of HTTPS connections to Fortinet management interface on TCP 443 from a single source IP targeting multiple URL paths in rapid succession. Should appear in web access logs and network flow data.
- Test 3Create Unauthorized Admin Account Post-Authentication-Bypass
Expected signal: FortiOS admin audit log should record a new admin account creation event with the account name 'svc_backup_acct', profile 'super_admin', and the API source IP. Event type=event, subtype=system, action=add should appear in FortiAnalyzer.
Unlock Pro Content
Get the full detection package for CVE-2026-24858 including response playbook, investigation guide, and atomic red team tests.