CVE-2025-64446 IBM QRadar · QRadar

Detect CVE-2025-64446: Fortinet FortiWeb Path Traversal Exploitation in IBM QRadar

Detects exploitation attempts targeting CVE-2025-64446, a path traversal vulnerability (CWE-23) in Fortinet FortiWeb. This vulnerability allows attackers to traverse directory boundaries and access files outside the intended web root, potentially exposing sensitive configuration files, credentials, or system files. The vulnerability is listed in CISA KEV indicating active exploitation in the wild.

MITRE ATT&CK

Tactic
Initial Access Defense Evasion Discovery

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT
  DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') AS event_time,
  sourceip,
  destinationip,
  URL,
  QIDNAME(qid) AS event_name,
  category,
  magnitude,
  "username"
FROM events
WHERE devicetype = 227
  AND (
    LOWER(URL) LIKE '%../%'
    OR LOWER(URL) LIKE '%..\\%'
    OR LOWER(URL) LIKE '%2e%2e%2f%'
    OR LOWER(URL) LIKE '%2e%2e/%'
    OR LOWER(URL) LIKE '%.%2f%2e%'
    OR LOWER(URL) LIKE '%2e%2e%5c%'
    OR LOWER(URL) LIKE '%252e%252e%'
    OR LOWER(URL) LIKE '%..../%'
    OR LOWER(URL) LIKE '%etc/passwd%'
    OR LOWER(URL) LIKE '%etc/shadow%'
    OR LOWER(URL) LIKE '%web.config%'
    OR LOWER(URL) LIKE '%proc/self%'
  )
ORDER BY starttime DESC
LAST 24 HOURS
critical severity medium confidence

QRadar AQL query to detect path traversal exploitation attempts against Fortinet FortiWeb (device type 227), searching for traversal patterns and sensitive file references in URL fields across the past 24 hours.

Data Sources

Fortinet FortiWebQRadar DSM for Fortinet FortiWeb

Required Tables

events

False Positives & Tuning

  • Security assessment tools performing authorized scans against FortiWeb-protected web applications
  • Double-encoded URLs from upstream proxies or CDN services appearing as traversal patterns
  • Legitimate web application requests with deep path structures resembling traversal sequences
  • QRadar DSM normalization artifacts creating spurious URL field values

Other platforms for CVE-2025-64446


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 1Basic Path Traversal Against FortiWeb-Protected Endpoint

    Expected signal: FortiWeb access log entry with the traversal URL, source IP, HTTP method GET, and either a 403 block response (if WAF in block mode) or 200/redirect if in monitor mode. SIEM should receive a CommonSecurityLog or syslog event within 60 seconds.

  2. Test 2URL-Encoded Path Traversal (Double Encoding)

    Expected signal: Multiple FortiWeb log entries with percent-encoded URL paths. SIEM events should show the encoded traversal sequences in RequestURL or Message fields. Attack log should show WAF signature matches for each encoded variant.

  3. Test 3Traversal Targeting FortiWeb Configuration or Certificate Files

    Expected signal: FortiWeb access and attack logs showing four separate requests targeting sensitive paths. Response codes expected to be 403 if blocking mode is active. SIEM should receive all four events and score the requests with TargetsSensitiveFile=true, raising FinalScore to critical threshold.

  4. Test 4Automated Traversal Fuzzing Simulation

    Expected signal: Burst of 8 FortiWeb log events from the same source IP within 10 seconds, each containing traversal patterns. SIEM correlation rules should group these by source IP and escalate based on repeat attempts.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections