What is Gladinet CentreStack?
Gladinet CentreStack and Triofox are enterprise private cloud file server and sync/share platforms that organizations deploy on-premises to provide Dropbox/OneDrive-style file sharing without using public cloud storage. They are built on ASP.NET and hosted on Windows Server / IIS. This is the second critical Gladinet vulnerability in 2025: CVE-2025-30406 (April 2025) involved the ASP.NET ViewState machine key being hardcoded in the default configuration. CVE-2025-14611 is a distinct, separate vulnerability — hardcoded AES encryption keys in the file transfer subsystem — but the attack chain can escalate to the same ViewState RCE outcome.
Overview
CVE-2025-14611 is a critical hardcoded cryptographic key vulnerability (CWE-798, CVSS 9.8) in Gladinet CentreStack and Triofox. The GladCtrl64.dll component uses static, hardcoded AES-256 keys (using Chinese text as the encryption key and Japanese marketing text as the initialization vector) to encrypt "Access Tickets" — file path tokens used by the filesvr.dn HTTP handler. Because the keys are identical in every installation, an attacker can decrypt legitimate tickets, forge malicious ones with arbitrary file paths, and read arbitrary files from the server unauthenticated — including web.config, which contains the ASP.NET machine key needed for ViewState deserialization RCE. Huntress discovered active exploitation on December 2, 2025, with Clop ransomware intelligence linking the campaign to ransomware actors.
Affected Versions
| Product | Vulnerable | Fixed |
|---|---|---|
| Gladinet CentreStack | All versions prior to 16.12.10420.56791 | 16.12.10420.56791 |
| Gladinet Triofox | All versions prior to 16.12.10420.56791 | 16.12.10420.56791 |
Technical Details
The vulnerability (CWE-798: Use of Hard-coded Credentials) is in GladCtrl64.dll, which implements the filesvr.dn HTTP handler for file access. The handler uses AES-256 encryption for "Access Tickets" — tokens containing file paths, access permissions, and expiration timestamps. The encryption keys are hardcoded directly in the DLL:
- Encryption key: A static string of Chinese text (identical in every installation)
- Initialization vector (IV): A static string of Japanese marketing text (identical in every installation)
The full exploit chain:
- Ticket forgery: Using the known hardcoded keys, an attacker creates a forged Access Ticket for any file path — including
C:\Program Files (x86)\Gladinet Cloud Enterprise\root\web.config. Forged tickets use an expiration timestamp of year 9999 to ensure they are always valid. - Local file inclusion (LFI): The forged ticket is submitted to the
filesvr.dnendpoint, which returns the requested file without authentication. - Machine key extraction: The
web.configfile contains the ASP.NET<machineKey>values used for ViewState signing. - ViewState deserialization RCE: Using the extracted machine key, the attacker forges a malicious ASP.NET ViewState payload containing a .NET gadget chain, submits it to any CentreStack/Triofox ASP.NET endpoint, and achieves unauthenticated remote code execution.
Detection indicator: Scan logs for the encrypted string vghpI7EToZUDIZDdprSubL3mTZ2 — a characteristic artifact of exploit attempts against the filesvr.dn endpoint.
Discovery
Huntress Labs researchers, who received a customer incident report on December 2, 2025, and confirmed active exploitation across multiple organizations.
Exploitation Context
Active exploitation confirmed from approximately December 10, 2025, with at least 9 organizations impacted in the initial wave. Attacks originated from IP 147.124.216[.]205. Additional incidents occurred December 15. Intelligence from December 18 links the campaign to the Clop ransomware group (TA505, Graceful Spider) — the same group that exploited Oracle EBS (CVE-2025-61882) and the MOVEit/GoAnywhere vulnerabilities in prior years. Clop's established playbook of targeting managed file transfer platforms makes Gladinet a consistent target. CISA added CVE-2025-14611 to the KEV catalog on December 15, 2025 with a January 5, 2026 deadline.
Note: CVE-2025-14611 is distinct from CVE-2025-30406 (the April 2025 ViewState machine key vulnerability) — they are different attack vectors on different code components, though both ultimately enable ViewState deserialization RCE.
Remediation
- Upgrade CentreStack and Triofox to version 16.12.10420.56791 or later immediately.
- Apply the CentreStack hardening guide at https://support.centrestack.com/hc/en-us/articles/360007159054 — specifically rotate the AES encryption keys used by
GladCtrl64.dllto unique values after upgrading. - Rotate the ASP.NET machine key in
web.configto a newly generated unique value (as recommended by the hardening guide) — if theweb.configwas exfiltrated via the LFI, the machine key is compromised regardless of the upgrade. - Scan logs for exploit indicator
vghpI7EToZUDIZDdprSubL3mTZ2in HTTP request logs tofilesvr.dn— this string indicates exploitation attempts. - Hunt for post-exploitation: check for new administrator accounts, unexpected files in CentreStack/IIS directories, and signs of lateral movement (domain admin group membership changes, unexpected RDP sessions).
- Block IP 147.124.216[.]205 at perimeter firewalls if observed in logs.
Key Details
| Property | Value |
|---|---|
| CVE ID | CVE-2025-14611 |
| Vendor / Product | Gladinet — CentreStack and Triofox |
| NVD Published | 2025-12-12 |
| NVD Last Modified | 2025-12-16 |
| CVSS 3.1 Score | 9.8 |
| CVSS 3.1 Vector | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H |
| Severity | CRITICAL |
| CWE | CWE-798 find similar ↗ |
| CISA KEV Added | 2025-12-15 |
| CISA KEV Deadline | 2026-01-05 |
| Known Ransomware Use | No |
CVSS 3.1 Breakdown
Required Action
Timeline
| Date | Event |
|---|---|
| 2025-11-29 | Gladinet releases version 16.12.10420.56791 — patching hardcoded AES keys |
| 2025-12-02 | Huntress receives customer report; begins investigation confirming active exploitation |
| 2025-12-10 | 9 confirmed victim organizations; attack IP 147.124.216[.]205 identified |
| 2025-12-12 | CVE published |
| 2025-12-15 | CISA adds to Known Exploited Vulnerabilities catalog |
| 2025-12-18 | Intelligence reports suspect Clop ransomware group involvement |
| 2026-01-05 | CISA BOD 22-01 remediation deadline |
References
| Resource | Type |
|---|---|
| CentreStack Release Notes | Vendor Advisory |
| Triofox Release History | Vendor Advisory |
| CentreStack Hardening Guide | Vendor Advisory |
| NVD — CVE-2025-14611 | Vulnerability Database |
| CISA KEV Catalog Entry | US Government |
| Huntress — Active Exploitation of Gladinet CentreStack/Triofox | Security Research |
| The Hacker News — Hard-Coded Gladinet Keys Let Attackers Read Files | News |
| CyberSecurityNews — Clop Ransomware Group Linked to CVE-2025-14611 | News |