CVE-2023-52163 Microsoft Sentinel · KQL

Detect Digiever DS-2105 Pro Missing Authorization Exploitation (CVE-2023-52163) in Microsoft Sentinel

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

KQL Detection Query

Microsoft Sentinel (KQL)
kusto
union DeviceNetworkEvents, CommonSecurityLog
| where TimeGenerated > ago(24h)
| where DestinationPort in (80, 443, 8080, 8443, 554, 37777)
| where RequestURL has_any ("/cgi-bin/", "/admin/", "/system/", "/config/", "/api/", "/setup")
| where isempty(RequestContext) or RequestContext !has "Authorization"
| extend DeviceVendor_norm = tolower(DeviceVendor)
| where DeviceVendor_norm has_any ("digiever", "nvr", "ds-2105")
    or UserAgent has_any ("digiever", "DS-2105")
    or RequestURL has_any ("digiever", "ds2105")
| summarize RequestCount = count(), UniqueIPs = dcount(SourceIP), URLs = make_set(RequestURL, 20) by DestinationIP, bin(TimeGenerated, 5m)
| where RequestCount > 5 or UniqueIPs > 2
| extend AlertSeverity = iff(RequestCount > 20, "High", "Medium")
| project TimeGenerated, DestinationIP, RequestCount, UniqueIPs, URLs, AlertSeverity
high severity medium confidence

Detects unauthenticated HTTP requests to Digiever DS-2105 Pro administrative endpoints indicative of missing authorization exploitation. Looks for high-volume or multi-source access attempts to sensitive CGI/admin paths without Authorization headers.

Data Sources

DeviceNetworkEventsCommonSecurityLogAzureFirewallApplicationRuleW3CIISLog

Required Tables

DeviceNetworkEventsCommonSecurityLog

False Positives & Tuning

  • Legitimate administrators accessing the NVR management interface from internal network segments
  • Network security scanners performing authorized vulnerability assessments
  • Monitoring systems polling device health endpoints without authentication headers

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