Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for CVE-2026-18556.

Unlock with Pro - from £29/user/mo
CVE-2026-18556 Google Chronicle · YARA-L

Detect N-able N-central Authentication Bypass via Alternate Path or Channel (CVE-2026-18556) in Google Chronicle

Detects exploitation attempts of CVE-2026-18556, an authentication bypass using an alternate path or channel (CWE-288) affecting N-able N-central. The vulnerability allows an attacker to reach protected N-central functionality or APIs through an alternate path that does not enforce the same authentication controls as the primary login flow, enabling unauthorized administrative access to the RMM platform. This CVE is listed in CISA KEV as actively exploited. Detections focus on anomalous authentication patterns, direct access to administrative or agent-management endpoints without a preceding authenticated session, unexpected session/token creation, and post-exploitation activity such as new admin account creation or agent deployment from the N-central server.

MITRE ATT&CK

Tactic
Initial Access Privilege Escalation Persistence

YARA-L Detection Query

Google Chronicle (YARA-L)
yaral
rule ncentral_auth_bypass_cve_2026_18556 {
  meta:
    author = "detection-engineering"
    description = "Detects repeated access to N-central admin/API paths without prior authentication, consistent with CVE-2026-18556"
    severity = "CRITICAL"
  events:
    $e.metadata.event_type = "NETWORK_HTTP"
    $e.target.url = /.*(\/api\/|\/dms\/|\/admin\/|\/nagent\/).*/ nocase
    not $e.target.url = /.*login.*/ nocase
    $e.network.http.response_code = 200
    $e.principal.ip = $ip
  match:
    $ip over 15m
  condition:
    $e and #e > 5
}
critical severity medium confidence

Chronicle YARA-L rule correlating repeated successful accesses to N-central admin/API paths from a single IP without login, mapping to CVE-2026-18556 exploitation patterns.

Data Sources

Chronicle UDM NETWORK_HTTP events from web proxy/reverse proxy feeds

Required Tables

NETWORK_HTTP

False Positives & Tuning

  • Legitimate API automation not routed through interactive login
  • Scanner or monitoring traffic
  • NAT/proxy IP aggregation causing false grouping

Other platforms for CVE-2026-18556


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 direct admin path access without prior login

    Expected signal: Multiple successful (200) HTTP requests to /dms/ path from a single source IP with no corresponding SigninLogs/auth event in the same window.

  2. Test 2Simulate anomalous account creation via API without session cookie

    Expected signal: N-central audit log entry for new admin user creation correlated with the same source IP as the earlier unauthenticated path access.

  3. Test 3Agent deployment task trigger simulation

    Expected signal: N-central deployment/job logs showing an agent push job initiated from an unauthenticated or anomalously-authenticated session.

Unlock playbooks & atomic tests with Pro

Get the full detection package for CVE-2026-18556 — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections