Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for CVE-2025-68686.

Upgrade to Pro
CVE-2025-68686 Splunk · SPL

Detect Fortinet FortiOS Sensitive Information Exposure (CVE-2025-68686) in Splunk

CVE-2025-68686 is an Exposure of Sensitive Information to an Unauthorized Actor vulnerability (CWE-200) in Fortinet FortiOS, added to CISA's Known Exploited Vulnerabilities catalog. Unauthorized actors may be able to access sensitive information exposed by affected FortiOS instances, potentially including configuration data, credentials, session tokens, or internal system details that could facilitate further compromise. This detection focuses on identifying anomalous access to FortiOS management interfaces, unusual API/CLI enumeration behavior, and downstream indicators of information disclosure abuse such as suspicious authentication following reconnaissance against exposed FortiOS endpoints.

MITRE ATT&CK

Tactic
Reconnaissance Initial Access Discovery

SPL Detection Query

Splunk (SPL)
spl
index=network_firewall sourcetype=fortinet:fortigate
| eval mgmt_action=case(match(_raw,"(?i)login"),"login", match(_raw,"(?i)config"),"config", match(_raw,"(?i)backup"),"backup", match(_raw,"(?i)download"),"download", 1=1,"other")
| where mgmt_action!="other"
| bin _time span=1h
| stats count as request_count values(mgmt_action) as actions dc(user) as unique_users by src_ip, dest_ip, _time
| where request_count > 20
| sort - request_count
high severity medium confidence

Flags bursts of FortiOS administrative/management log activity per source IP within an hourly window, consistent with attempts to enumerate or extract sensitive information related to CVE-2025-68686.

Data Sources

Fortinet FortiGate logs

Required Sourcetypes

fortinet:fortigate

False Positives & Tuning

  • Authorized config backup automation
  • IT staff performing scheduled maintenance
  • Security scanning traffic from approved scanners
  • High-traffic MSP management consoles managing multiple tenants

Other platforms for CVE-2025-68686


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.

  1. Test 1Simulate high-volume FortiOS admin API access

    Expected signal: Multiple HTTP GET requests to /api/v2/cmdb/* endpoint from a single source IP within a short time window, logged in firewall/proxy logs.

  2. Test 2Simulate FortiOS config backup enumeration

    Expected signal: Repeated backup/config-related HTTP requests logged in FortiOS event logs and network proxy logs.

  3. Test 3Simulate SSL-VPN portal session enumeration

    Expected signal: Multiple failed/attempted SSL-VPN login events logged with consistent source IP within a short window.

Unlock playbooks & atomic tests with Pro

Get the full detection package for CVE-2025-68686 — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections