CVE-2023-52163 CrowdStrike LogScale · LogScale

Detect Digiever DS-2105 Pro Missing Authorization Exploitation (CVE-2023-52163) in CrowdStrike LogScale

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

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=NetworkConnectIP4
| ContextBaseFileName!=""
| RemotePort in (80, 443, 8080, 8443, 554, 37777)
| HttpPath=/(?i).*(cgi-bin|admin|system|config|setup|api).*/
| HttpAuthorizationHeader=""
| groupBy([RemoteAddressIP4, HttpPath], function=[
    count(aid, as=RequestCount),
    dc(LocalAddressIP4, as=UniqueSources),
    min(timestamp, as=FirstSeen),
    max(timestamp, as=LastSeen)
  ])
| RequestCount > 5
| sort(RequestCount, order=desc)
| eval Severity=if(RequestCount > 20, "HIGH", "MEDIUM")
| table(FirstSeen, LastSeen, RemoteAddressIP4, HttpPath, RequestCount, UniqueSources, Severity)
high severity medium confidence

CrowdStrike Falcon LogScale CQL query identifying endpoints initiating unauthenticated HTTP sessions to NVR management ports and admin-class URL paths, flagging clusters indicative of CVE-2023-52163 exploitation.

Data Sources

CrowdStrike Falcon sensorNetwork telemetryDNS request logs

Required Tables

NetworkConnectIP4

False Positives & Tuning

  • Endpoint-based monitoring agents polling IP camera or NVR interfaces for asset inventory purposes
  • Authorized red team tooling during sanctioned penetration tests
  • OT discovery tools that perform unauthenticated banner grabbing on management ports

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