Detect Dassault Systèmes DELMIA Apriso Missing Authorization (CVE-2025-6205) in IBM QRadar
Detects exploitation attempts targeting CVE-2025-6205, a missing authorization vulnerability (CWE-862) in Dassault Systèmes DELMIA Apriso. This vulnerability allows unauthenticated or low-privileged attackers to access protected resources or perform actions without proper authorization checks. Listed as a CISA KEV, indicating active exploitation in the wild.
MITRE ATT&CK
QRadar Detection Query
SELECT
DATEFORMAT(starttime, 'yyyy-MM-dd HH:mm:ss') AS EventTime,
sourceip AS SourceIP,
destinationip AS DestinationIP,
destinationport AS DestPort,
URL AS RequestURL,
username AS Username,
HTTP_METHOD AS Method,
HTTP_RESPONSE_CODE AS StatusCode,
LOGSOURCENAME(logsourceid) AS LogSource,
'CVE-2025-6205' AS CVE
FROM events
WHERE
(
(
URL ILIKE '%Apriso%' OR URL ILIKE '%DELMIA%' OR URL ILIKE '%GlobalFluency%' OR URL ILIKE '%Manufacturing%'
)
AND HTTP_METHOD IN ('POST', 'PUT', 'DELETE', 'PATCH')
AND (
username IS NULL OR username = '' OR username = '-' OR username = 'anonymous'
OR URL ILIKE '%bypass%' OR URL ILIKE '%noauth%' OR URL ILIKE '%auth=skip%'
)
AND HTTP_RESPONSE_CODE IN (200, 201, 204, 301, 302)
)
OR
(
QIDNAME(qid) ILIKE '%authentication failure%'
AND (username ILIKE '%apriso%' OR username ILIKE '%delmia%' OR username ILIKE '%mes%')
)
LAST 24 HOURS
ORDER BY starttime DESC AQL query for QRadar to identify unauthenticated or suspicious requests to DELMIA Apriso endpoints and authentication failures for known Apriso service accounts.
Data Sources
Required Tables
False Positives & Tuning
- Authorized monitoring systems querying Apriso status endpoints anonymously
- Scheduled ETL jobs using token-based authentication not captured as username
- Network scanners performing asset discovery
- Vendor-supported anonymous reporting modules in Apriso
Other platforms for CVE-2025-6205
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.
- Test 1Unauthenticated HTTP POST to Apriso API Endpoint
Expected signal: IIS access log entry: POST /Apriso/api/v1/WorkOrders with username '-' or empty and HTTP response code 200/201/401/403. Network flow showing outbound connection to Apriso host on port 80 or 443.
- Test 2Apriso Endpoint Enumeration via Unauthenticated GET Scan
Expected signal: Multiple IIS log entries for sequential GET requests to /Apriso*, /DELMIA*, /GlobalFluency* paths from same source IP within a short time window.
- Test 3Authorization Bypass via Query Parameter Manipulation
Expected signal: IIS log entry with URI /Apriso/api/v1/Users?anonymous=true&auth=skip, method POST, and username '-'. Windows Security Event Log may show no corresponding authentication event.
- Test 4Repeated Authentication Failure on Apriso Service Account
Expected signal: Windows Security Event Log Event ID 4625 (failed logon) for TargetUserName=apriso_svc repeated 10 times within a short window. IIS 401 responses for POST to /Apriso/login.
Unlock Pro Content
Get the full detection package for CVE-2025-6205 including response playbook, investigation guide, and atomic red team tests.