CVE-2025-14611 Sumo Logic CSE · Sumo

Detect Gladinet CentreStack and Triofox Hard-Coded Cryptographic Key Exploitation in Sumo Logic CSE

Detects exploitation of CVE-2025-14611, a hard-coded cryptographic key vulnerability (CWE-798) in Gladinet CentreStack and Triofox. Attackers who obtain the static machineKey or cryptographic seed can forge ASP.NET ViewState tokens or authentication artifacts, enabling remote code execution via deserialization attacks without valid credentials. This vulnerability is actively exploited and listed on CISA KEV.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=iis OR _sourceCategory=windows/security
| parse "* * * * * * * * * *" as date, time, s_sitename, s_ip, cs_method, cs_uri_stem, cs_uri_query, s_port, cs_username, c_ip nodrop
| parse "EventCode=*" as event_code nodrop
| parse "ProcessName=*" as process_name nodrop
| parse "ParentProcessName=*" as parent_process nodrop
| where (cs_method = "POST" and (cs_uri_stem matches "*/portal/*" or cs_uri_stem matches "*/triofox/*" or cs_uri_stem matches "*/centrestack/*" or cs_uri_stem matches "*/fileserver/*") and (length(cs_uri_query) > 500))
  or (event_code in ("4688", "4624") and (process_name matches "*cmd.exe*" or process_name matches "*powershell.exe*") and parent_process matches "*w3wp.exe*")
| eval risk = if(parent_process matches "*w3wp.exe*" and (process_name matches "*cmd.exe*" or process_name matches "*powershell.exe*"), "CRITICAL", "HIGH")
| count by _sourceHost, c_ip, cs_uri_stem, process_name, risk
| where _count >= 1
| sort by risk, _count desc
critical severity medium confidence

Sumo Logic query for detecting CVE-2025-14611 exploitation via large ViewState POST requests to Gladinet CentreStack/Triofox endpoints or IIS worker process spawning suspicious child processes.

Data Sources

IIS Access LogsWindows Security Events

Required Tables

_sourceCategory=iis_sourceCategory=windows/security

False Positives & Tuning

  • Legitimate portal operations submitting large forms with extended query strings
  • Authorized automation frameworks running PowerShell under IIS application pool identity
  • Application maintenance tasks that spawn cmd.exe from w3wp.exe during scheduled jobs
  • False detections from vulnerability scanners conducting authorized web application assessments

Other platforms for CVE-2025-14611


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 1Simulate Forged ASP.NET ViewState Payload Submission to CentreStack Endpoint

    Expected signal: IIS access log entry showing POST to /portal/default.aspx with large cs-uri-query value; HTTP response code 500 if payload is malformed, 200 if bypassed; network events capturing the inbound connection

  2. Test 2IIS Worker Process Child Shell Spawn Simulation (Lab)

    Expected signal: Windows Security Event ID 4688 for cmd.exe process creation; EDR process telemetry showing PowerShell spawning cmd.exe; file creation event for exploit_sim_output.txt in C:\Temp

  3. Test 3CentreStack web.config Hard-Coded MachineKey Inspection

    Expected signal: File read event on web.config via Sysmon Event ID 11/4663; PowerShell script block logging capturing the content search pattern; output file creation at C:\Temp\machinekey_audit.txt

  4. Test 4Forged Authentication Token Submission via Hardcoded Key (Lab Only)

    Expected signal: IIS access log showing GET request with .ASPXAUTH cookie header; Windows authentication event logs (Event ID 4624/4625) recording the authentication attempt; network events capturing the connection from the test host

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections