CVE-2026-3055 Microsoft Sentinel · KQL

Detect Citrix NetScaler Out-of-Bounds Read (CVE-2026-3055) in Microsoft Sentinel

Detects exploitation attempts targeting CVE-2026-3055, an out-of-bounds read vulnerability (CWE-125) in Citrix NetScaler ADC and NetScaler Gateway. This vulnerability is actively exploited in the wild (CISA KEV) and may allow unauthenticated remote attackers to read sensitive memory contents, potentially leading to information disclosure or enabling further attacks. Detection focuses on anomalous HTTP request patterns, NetScaler management plane access, and memory-related crash indicators.

MITRE ATT&CK

Tactic
Reconnaissance Initial Access Collection

KQL Detection Query

Microsoft Sentinel (KQL)
kusto
union CommonSecurityLog, W3CIISLog
| where TimeGenerated >= ago(7d)
| where DeviceVendor == "Citrix" or Computer has_any ("netscaler", "citrix", "gateway", "vpx", "mpx")
| where RequestURL has_any ("/vpn/", "/citrix/", "/logon/", "/epa/", "/rpc/", "/cgi/") or csUriStem has_any ("/vpn/", "/citrix/", "/logon/", "/epa/")
| where RequestMethod in ("GET", "POST", "OPTIONS") and (RequestURL matches regex @"[%\x00-\x1f]{3,}" or RequestURL contains "%00" or RequestURL contains "../" or strlen(RequestURL) > 1024)
| extend SrcIP = coalesce(SourceIP, cIP, DeviceCustomString2)
| summarize RequestCount = count(), UniqueURLs = dcount(RequestURL), Methods = make_set(RequestMethod), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SrcIP, Computer
| where RequestCount > 10 or UniqueURLs > 5
| extend RiskScore = case(RequestCount > 100, "High", RequestCount > 20, "Medium", "Low")
| project FirstSeen, LastSeen, SrcIP, Computer, RequestCount, UniqueURLs, Methods, RiskScore
| order by RequestCount desc
critical severity medium confidence

Detects anomalous HTTP request patterns to Citrix NetScaler endpoints that may indicate CVE-2026-3055 exploitation attempts. Looks for malformed or oversized requests, path traversal, and null byte injection against known NetScaler URL paths.

Data Sources

CommonSecurityLogW3CIISLogAzureDiagnostics

Required Tables

CommonSecurityLogW3CIISLog

False Positives & Tuning

  • Legitimate security scanners or vulnerability assessment tools probing NetScaler endpoints
  • Web application firewalls performing active inspection and forwarding logs
  • Load balancer health checks generating repeated requests to VPN and gateway paths
  • Automated certificate renewal processes accessing gateway management endpoints

Other platforms for CVE-2026-3055


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 1Simulate CVE-2026-3055 OOB Read Probe via Malformed VPN Endpoint Request

    Expected signal: NetScaler access logs showing requests to /vpn/ with URI length >600 characters and path traversal sequences. HTTP response codes 400, 404, or 500 depending on patch status. Network capture showing outbound TCP connection to NetScaler port 443 with anomalous URI in HTTP request.

  2. Test 2Null Byte Injection Against NetScaler Gateway Authentication Endpoint

    Expected signal: 15 sequential POST requests to /cgi/login from single source IP within 15 seconds. Varying response sizes across requests if OOB read is triggerable. NetScaler AppFW violation logs for null byte detection if AppFW is enabled. Process monitoring showing nsppe or nsnetsvc CPU spikes.

  3. Test 3Response Size Anomaly Validation for OOB Memory Disclosure

    Expected signal: Two HTTP requests from same source IP — one to /vpn/index.html (baseline) and one to /epa/ with encoded path traversal. If vulnerable, probe response will be larger than baseline or contain unexpected binary content. NetScaler logs show both requests with response sizes in bytes_out field.

Unlock Pro Content

Get the full detection package for CVE-2026-3055 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections