Detect Digiever DS-2105 Pro Missing Authorization Exploitation (CVE-2023-52163) in IBM QRadar
Detects exploitation of CVE-2023-52163, a missing authorization vulnerability (CWE-862) in Digiever DS-2105 Pro NVR devices. This KEV-listed vulnerability allows unauthenticated attackers to access restricted functionality or administrative interfaces without proper credential validation. Threat actors actively exploit exposed NVR devices for initial access, lateral movement, and persistence in OT/IoT environments.
MITRE ATT&CK
QRadar Detection Query
SELECT
sourceip,
destinationip,
destinationport,
URL,
COUNT(*) AS request_count,
COUNT(DISTINCT sourceip) AS unique_sources,
MIN(starttime) AS first_seen,
MAX(starttime) AS last_seen
FROM events
WHERE
LOGSOURCETYPENAME(devicetype) IN ('Palo Alto PA Series', 'Cisco ASA', 'Juniper SRX', 'Proxy')
AND destinationport IN (80, 443, 8080, 8443, 554, 37777)
AND (
URL ILIKE '%/cgi-bin/%'
OR URL ILIKE '%/admin/%'
OR URL ILIKE '%/system/%'
OR URL ILIKE '%/config/%'
OR URL ILIKE '%/setup%'
OR URL ILIKE '%/api/%'
)
AND ("Authorization" NOT IN HEADERS OR HEADERS IS NULL)
AND DATEFORMAT(starttime, 'YYYY-MM-dd') = DATEFORMAT(NOW(), 'YYYY-MM-dd')
GROUP BY sourceip, destinationip, destinationport, URL
HAVING request_count > 5 OR unique_sources > 2
ORDER BY request_count DESC
LAST 24 HOURS QRadar AQL query detecting high-volume or multi-source unauthenticated requests to Digiever NVR administrative endpoints, with grouping to surface exploitation campaigns versus isolated probes.
Data Sources
Required Tables
False Positives & Tuning
- Scheduled internal monitoring tasks using legacy HTTP clients that strip Authorization headers
- Network management platforms with misconfigured credential injection for embedded device APIs
- Penetration testing activity during authorized security assessment windows
Other platforms for CVE-2023-52163
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 1Unauthenticated Admin Endpoint Enumeration
Expected signal: HTTP GET requests to /cgi-bin/ and /admin/ paths from the test host IP to the NVR device on port 80, with no Authorization header present in the HTTP request headers
- Test 2RTSP Stream Access Without Authentication
Expected signal: Network connections to TCP/554 (RTSP) and TCP/80 from test host; HTTP requests to /cgi-bin/snapshot.cgi without authentication headers; potential RTSP DESCRIBE request in network capture
- Test 3Configuration Extraction via Unauthenticated API
Expected signal: Multiple HTTP GET requests to configuration and backup endpoints without Authorization headers; file download activity if 200 responses received; DNS lookups for NVR hostname from test system
Unlock Pro Content
Get the full detection package for CVE-2023-52163 including response playbook, investigation guide, and atomic red team tests.