How to Fix CVE-2025-2749: Path Traversal in Kentico Xperience
By Sai Kiran Pandrala
| Severity | CVSS 7.2 (High) |
|---|---|
| Actively exploited? | Yes, listed in CISA KEV (added 2026-04-20, federal due date 2026-05-04) |
| Affected | Xperience: 0 <= version 13.0.178 |
| Fixed in | Xperience: 13.0.178 |
| Type (CWE) | CWE-22 — Improper Limitation of a Pathname to a Restricted Directory |
What is CVE-2025-2749?
An authenticated remote code execution in Kentico Xperience allows authenticated users Staging Sync Server to upload arbitrary data to path relative locations. This results in path traversal and arbitrary file upload, including content that can be executed server side leading to remote code execution.This issue affects Kentico Xperience through 13.0.178.
A successful exploit lets a remote attacker run arbitrary code on the target system. The fix is to install the patched build from Kentico listed in the table above and confirm the running version after the upgrade.
Am I affected?
Check your installed version of Kentico Xperience against the Affected row above. If your build sits within any of those ranges, treat the system as vulnerable until patched.
If you do not have the version handy, pull it the same way you usually would for Xperience: the management console's About page, the CLI's version command, or the package manager record for the installed binary. The vendor advisory linked in the references section is the authoritative source.
How to fix CVE-2025-2749
- Read the vendor advisory at https://devnet.kentico.com/download/hotfixes for the build matrix that matches your installation.
- Identify the patched build for your major version: Xperience: 13.0.178.
- Back up configuration before upgrading (export running config, snapshot the VM, or take a database dump as appropriate for your platform).
- Apply the patched build using the vendor's documented upgrade path (in-place upgrade, package update, or replacement image).
- Restart the service so the new code is loaded; verify the running version reports the patched build number.
Patch via your OS package manager
# The exact package name and patched version are listed in the vendor advisory:
# https://devnet.kentico.com/download/hotfixes
# Debian / Ubuntu
sudo apt update
sudo apt install --only-upgrade xperience
# RHEL / Rocky / AlmaLinux / Fedora
sudo dnf upgrade xperience
# openSUSE
sudo zypper update xperience
# Verify the running version matches the fixed version
dpkg -s xperience 2>/dev/null | grep -i version || rpm -q xperience 2>/dev/null
# Windows: pull the cumulative update that ships this fix.
Install-Module PSWindowsUpdate -Force -SkipPublisherCheck
Get-WindowsUpdate -AcceptAll -Install -AutoReboot
Verify the fix landed
# 1. Confirm the running version matches the fixed-in version from the advisory:
# https://devnet.kentico.com/download/hotfixes
# Use the platform-specific version probe above.
# 2. Re-scan with your vulnerability scanner (Nessus, Qualys, Tenable, OpenVAS).
# The scanner should no longer flag CVE-2025-2749 on the patched target.
# 3. Inspect recent service / kernel logs for crash loops or rollback events.
journalctl -u <service> --since "10 minutes ago"
dmesg --since "10 minutes ago"
If you can't patch immediately
Check the vendor advisory's "Workarounds" section. If the advisory lists no official workaround, patching is the only remediation. Compensating controls that reduce attack surface in the meantime: restrict network access to the management interface to a small admin allowlist, disable the affected feature if it is not in use, and monitor the relevant logs for the exploitation patterns referenced in the advisory.
How to verify the fix worked
- Confirm the running version matches the patched build from the vendor advisory.
- Re-run your vulnerability scanner; the CVE should clear.
- Review logs from before the patch for the exploitation signatures described in the advisory, and treat any matches as a possible compromise (rotate credentials, isolate the host, full IR).
Frequently asked questions
Related fixes
Other vulnerabilities in the same area that are worth patching alongside this one:
- How to Fix CVE-2025-71210: CWE-22: Improper Limitation of a Pathname to a Restricted Directory in TrendAI Apex One — CWE-22: Improper Limitation of a Pathname to a Restricted Directory in TrendAI Apex One
- How to Fix CVE-2025-0066: Incorrect Permission Assignment for Critical Resource in SAP NetWeaver AS for ABAP and ABAP Platform (Internet Communication Framework) , Incorrect Permission Assignment for Critical Resource in SAP NetWeaver AS for ABAP and ABAP Platform (Internet Communication Framework)
- How to Fix CVE-2025-30012: Insecure Deserialization in SAP Supplier Relationship Management (Live Auction Cockpit) , Insecure Deserialization in SAP Supplier Relationship Management (Live Auction Cockpit)
- How to Fix CVE-2025-28983: CWE-89 Improper Neutralization of Special Elements used in an SQL Command in Click & Pledge Connect , CWE-89 Improper Neutralization of Special Elements used in an SQL Command in Click & Pledge Connect
- How to Fix CVE-2025-53521: F5 BIG-IP APM Access Policy Vulnerability , F5 BIG-IP APM Access Policy Vulnerability
Is CVE-2025-2749 being exploited right now?
Yes. It is listed in the CISA Known Exploited Vulnerabilities catalog (added 2026-04-20), which means CISA has evidence of active exploitation.
What is the CVSS score for CVE-2025-2749?
CVSS 7.2 (High). Use this with your own asset exposure to set patching priority (internet-exposed systems first).
Do I need to take the system offline to patch?
It depends on the platform. Many appliances support hitless upgrade in HA pairs (upgrade standby, fail over, upgrade primary). Servers and applications usually need a service restart. Plan a maintenance window if HA is not available.
What if my version is not listed as affected?
Cross-check against the vendor advisory linked below. The CVE record reflects the vendor's official affected-products list at publication time; later-discovered variants are added through the same advisory or a follow-up CVE.
References
- Official vendor advisory: https://devnet.kentico.com/download/hotfixes
- NVD: https://nvd.nist.gov/vuln/detail/CVE-2025-2749
- CISA KEV catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- https://labs.watchtowr.com/bypassing-authentication-like-its-the-90s-pre-auth-rce-chain-s-in-kentico-xperience-cms/
- https://www.vulncheck.com/advisories/kentico-xperience-staging-media-file-upload-authenticated-rce
*This guide was assembled from the official vendor advisory, NVD record, and CISA KEV listing on 2026-05-25. Always confirm against the vendor advisory before applying changes in production.*