Detect Kentico Xperience CMS Authentication Bypass (CVE-2025-2747) in IBM QRadar
Detects exploitation of CVE-2025-2747, an authentication bypass vulnerability (CWE-288) in Kentico Xperience CMS. Attackers can access protected administrative or content management endpoints via alternate paths or channels without valid credentials, enabling unauthorized access to sensitive CMS functionality. This vulnerability is actively exploited in the wild and listed in CISA KEV.
MITRE ATT&CK
QRadar Detection Query
SELECT sourceip, URL, username, statuscode, QIDNAME(qid) AS eventname, starttime, "devicetime"
FROM events
WHERE LOGSOURCETYPENAME(logsourceid) IN ('Microsoft IIS', 'Apache HTTP Server', 'Nginx')
AND (URL ILIKE '%/CMSPages/%' OR URL ILIKE '%/CMSModules/%' OR URL ILIKE '%/Admin/%' OR URL ILIKE '%/KenticoCMS/%' OR URL ILIKE '%/CMS/SiteManager%' OR URL ILIKE '%/CMSDesk%')
AND statuscode IN ('200', '201', '302')
AND (username IS NULL OR username = '' OR username = '-' OR LOWER(username) = 'anonymous')
AND starttime > NOW() - 86400000
ORDER BY starttime DESC
LIMIT 1000 Queries QRadar for unauthenticated successful HTTP access to Kentico Xperience CMS protected paths across web server log sources, flagging potential authentication bypass activity.
Data Sources
Required Tables
False Positives & Tuning
- CMS pages and resources publicly accessible by design without login
- Internal monitoring tools querying CMS status endpoints anonymously
- Reverse proxy health probes that do not forward authentication headers
- Search engine crawlers accessing publicly indexed CMS resource paths
Other platforms for CVE-2025-2747
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 CMS Unauthenticated Admin Path Access Simulation
Expected signal: IIS access logs will record HTTP GET requests to each tested path with the source IP of the test host; requests will appear with no authenticated username (cs_username = '-').
- Test 2Alternate Channel Authentication Bypass via Parameter Manipulation
Expected signal: Web server logs capture each variant request with full URI including query string; WAF logs may flag path traversal patterns in the query string.
- Test 3Post-Bypass Webshell Upload Simulation via CMS File Manager
Expected signal: Windows Security Event Log will show file creation event (Event ID 4663) for test_detection.aspx under the CMS web root; Sysmon Event ID 11 (FileCreate) will capture the new .aspx file creation with the IIS worker process (w3wp.exe) as the creator.
Unlock Pro Content
Get the full detection package for CVE-2025-2747 including response playbook, investigation guide, and atomic red team tests.