CVE-2025-12480 CrowdStrike LogScale · LogScale

Detect Gladinet Triofox Improper Access Control Exploitation Detected in CrowdStrike LogScale

Detects exploitation attempts targeting CVE-2025-12480, an improper access control vulnerability (CWE-284) in Gladinet Triofox. This vulnerability allows attackers to bypass access controls, potentially gaining unauthorized access to file storage and collaboration resources. Listed as a CISA Known Exploited Vulnerability, active exploitation has been observed in the wild.

MITRE ATT&CK

Tactic
Initial Access Persistence Credential Access

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName IN (NetworkConnectIP4, NetworkConnectIP6, ProcessRollup2, SyntheticProcessRollup2)
| $src_ip = RemoteAddressIP4
| $process_name = lowercase(ImageFileName)
| $cmdline = lowercase(CommandLine)
| ($process_name = /triofox|centrestack|gladinet/ OR $cmdline = /triofox|centrestack|gladinet/)
  OR (
    event_simpleName IN (NetworkConnectIP4, NetworkConnectIP6)
    AND RemotePort IN (80, 443, 8080, 8443)
    AND ($process_name = /triofox|centrestack|gladinet/ OR ParentImageFileName = /triofox|centrestack|gladinet/)
  )
| groupby([aid, $src_ip, $process_name, RemotePort], function=[count(aid, as=event_count), min(timestamp, as=first_seen), max(timestamp, as=last_seen)])
| where event_count > 50
| $severity = if(event_count > 200, "critical", if(event_count > 100, "high", "medium"))
| $cve = "CVE-2025-12480"
| $vendor = "Gladinet"
| $product = "Triofox"
| sort(event_count, order=desc)
| limit 1000
critical severity medium confidence

CrowdStrike Falcon query detecting CVE-2025-12480 by identifying high-frequency network connections or process executions associated with Gladinet Triofox processes, indicating potential access control bypass exploitation.

Data Sources

CrowdStrike Falcon Endpoint ActivityCrowdStrike Network ContainmentFalcon RTR

Required Tables

NetworkConnectIP4NetworkConnectIP6ProcessRollup2SyntheticProcessRollup2

False Positives & Tuning

  • Triofox server-side processes handling legitimate high-volume file synchronization from many clients
  • Authorized Triofox administrative tools performing bulk configuration or user management
  • Backup agents running against Triofox storage generating sustained high connection counts
  • Triofox internal health monitoring or watchdog processes creating frequent process events

Other platforms for CVE-2025-12480


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 1Triofox Unauthenticated Admin Endpoint Probe

    Expected signal: IIS access log entries showing GET requests to /api/user/list, /admin/dashboard, /admin/users, /token, /api/settings from the test machine IP without authentication headers. Windows Security Event ID 4625 may appear if the application logs failed authentication attempts.

  2. Test 2Triofox Token Endpoint Brute Force Simulation

    Expected signal: IIS log entries showing 30 POST requests to /token from the test IP within seconds, with HTTP 401 or 200 response codes. Application-level Triofox logs may record authentication attempts.

  3. Test 3Triofox File Access Path Traversal Probe

    Expected signal: Windows Security event logs and IIS access logs recording HTTP GET requests to file-related Triofox endpoints without valid session tokens. Network telemetry in CrowdStrike or EDR showing outbound HTTP connections from the test machine to the Triofox server.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections