CVE-2023-52163 Elastic Security · Elastic

Detect Digiever DS-2105 Pro Missing Authorization Exploitation (CVE-2023-52163) in Elastic Security

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

Tactic
Initial Access Privilege Escalation Defense Evasion

Elastic Detection Query

Elastic Security (Elastic)
eql
sequence by destination.ip with maxspan=5m
  [network where event.category == "network" and
   destination.port in (80, 443, 8080, 8443, 554, 37777) and
   (
     url.path like~ "*/cgi-bin/*" or
     url.path like~ "*/admin/*" or
     url.path like~ "*/system/*" or
     url.path like~ "*/config/*" or
     url.path like~ "*/setup*"
   ) and
   not (http.request.headers.authorization : "*")]
  [network where event.category == "network" and
   destination.port in (80, 443, 8080, 8443, 554, 37777) and
   http.response.status_code in (200, 201, 204)]
| where #sequence >= 2
high severity medium confidence

EQL sequence detection identifying unauthenticated requests to sensitive NVR administrative paths that receive successful HTTP responses, indicating the missing authorization check is being exploited successfully.

Data Sources

Elastic SIEMPacketbeatNetwork flow logsHTTP proxy logs

Required Tables

logs-network.*logs-http.*packetbeat-*

False Positives & Tuning

  • Internal health monitoring services that do not pass authentication headers to embedded device APIs
  • Legacy integration scripts designed before authentication was enforced on the target device class
  • Load balancer health checks targeting device status endpoints

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.

  1. 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

  2. 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

  3. 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.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections