Detect Kentico Xperience Path Traversal and Arbitrary File Upload (CVE-2025-2749) in Splunk
Detects exploitation of CVE-2025-2749, a path traversal and unrestricted file upload vulnerability in Kentico Xperience CMS. Attackers can traverse directory boundaries to write arbitrary files — including web shells — to locations outside the intended upload path, enabling remote code execution on the hosting server. This CVE is listed in the CISA Known Exploited Vulnerabilities catalog.
MITRE ATT&CK
- Tactic
- Initial Access Execution Persistence
SPL Detection Query
index=web sourcetype IN ("iis", "ms:iis:auto", "access_combined")
| eval uri=lower(uri_path)
| where match(uri, "/kentico/") OR match(uri, "/cmspages/") OR match(uri, "/cmsformcontrols/") OR match(uri, "/cmsmodules/") OR match(uri, "/getfile/") OR match(uri, "/uploadfile/")
| where match(uri, "\.\./") OR match(uri, "\.\.%2f") OR match(uri, "%252e") OR match(uri, "\.\.%5c") OR match(uri, "%2e%2e")
| eval suspicious_ext=if(match(uri, "\.(aspx|asp|ashx|asmx|php|jsp|exe|dll|bat|cmd|ps1|sh|config)(\?|$)"), "true", "false")
| eval path_traversal="true"
| table _time, src_ip, uri, method, status, suspicious_ext, useragent, host
| sort -_time Searches IIS and web access logs for Kentico Xperience requests containing path traversal sequences targeting known CMS upload or file handling paths, flagging attempts that reference executable extensions.
Data Sources
Required Sourcetypes
False Positives & Tuning
- Automated vulnerability scanners performing authorized web application assessments
- URL-encoded special characters in legitimate file names uploaded by editors
- Penetration testing activity targeting Kentico environments
Other platforms for CVE-2025-2749
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.
- Test 1Kentico Path Traversal Upload Simulation
Expected signal: IIS access log records a POST to /kentico/cmsformcontrols/uploader.ashx with a filename parameter containing '../..' sequences; file creation event may appear in Windows Security log under w3wp.exe
- Test 2Encoded Path Traversal Bypass Attempt
Expected signal: IIS log shows double-encoded percent sequences in the request URL; WAF logs may show allowed request if only basic traversal patterns are blocked
- Test 3Web Shell Execution Post-Exploit Simulation
Expected signal: Windows Security Event ID 4663 fires for file creation under w3wp.exe; DeviceFileEvents in Defender shows .aspx file written by w3wp.exe; subsequent HTTP GET to the shell path appears in IIS logs
Unlock Pro Content
Get the full detection package for CVE-2025-2749 including response playbook, investigation guide, and atomic red team tests.