CVE-2025-14611 Elastic Security · Elastic

Detect Gladinet CentreStack and Triofox Hard-Coded Cryptographic Key Exploitation in Elastic Security

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

Elastic Detection Query

Elastic Security (Elastic)
eql
sequence by host.name with maxspan=2m
  [network where event.dataset == "iis.access" and
   http.request.method == "POST" and
   url.path : ("*/portal/*", "*/triofox/*", "*/centrestack/*", "*/fileserver/*") and
   (
     length(url.query) > 500 or
     http.response.status_code == 500
   )
  ] by host.name
  [process where event.type == "start" and
   process.parent.name : ("w3wp.exe", "IIS Worker Process") and
   process.name : ("cmd.exe", "powershell.exe", "wscript.exe", "cscript.exe", "mshta.exe", "certutil.exe", "bitsadmin.exe")
  ] by host.name
critical severity high confidence

EQL sequence rule that correlates anomalous POST requests to Gladinet web endpoints (with oversized query strings or 500 errors) followed within 2 minutes by suspicious child process creation from IIS worker processes, indicating successful ViewState deserialization RCE via CVE-2025-14611.

Data Sources

IIS Access LogsWindows Process EventsElastic Endpoint

Required Tables

logs-iis.access-*logs-endpoint.events.process-*

False Positives & Tuning

  • Legitimate IIS application errors followed by administrative PowerShell sessions on the same host
  • Automated deployment scripts spawning cmd.exe from w3wp.exe during application updates
  • IIS management tools that legitimately spawn child processes from the worker process
  • Penetration tests conducted against the CentreStack environment

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