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

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

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.

Vulnerability Intelligence

KEV — Known Exploited

What is CVE-2026-18556 N-able N-central Authentication Bypass via Alternate Path or Channel (CVE-2026-18556)?

N-able N-central Authentication Bypass via Alternate Path or Channel (CVE-2026-18556) (CVE-2026-18556) maps to the Initial Access and Privilege Escalation and Persistence tactics — the adversary is trying to get into your network in MITRE ATT&CK.

This page provides production-ready detection logic for N-able N-central Authentication Bypass via Alternate Path or Channel (CVE-2026-18556), covering the data sources and telemetry it touches: Web server / reverse proxy logs (WebServerLogs), Azure AD / SigninLogs (if federated), N-central application logs ingested via AMA or syslog. The queries below are rated critical severity at medium confidence, and ship for 7 SIEM platforms — KQL, SPL, Elastic, QRadar, Sumo, YARA-L, LogScale.

MITRE ATT&CK

Tactic
Initial Access Privilege Escalation Persistence
Microsoft Sentinel / Defender
kusto
// N-able N-central auth bypass - anomalous admin path access without prior auth event
let susTimeWindow = 1h;
WebServerLogs
| where TimeGenerated > ago(susTimeWindow)
| where ServerName has_any ("n-central", "ncentral")
| where UrlPath has_any ("/api/", "/dms/", "/admin/", "/nagent/") and UrlPath !has "/login"
| where ResponseCode == 200
| join kind=leftanti (
    SigninLogs
    | where TimeGenerated > ago(susTimeWindow)
    | where AppDisplayName has_any ("n-central","ncentral")
) on $left.ClientIP == $right.IPAddress
| summarize RequestCount=count(), Paths=make_set(UrlPath) by ClientIP, ServerName, bin(TimeGenerated, 15m)
| where RequestCount > 5
| project TimeGenerated, ClientIP, ServerName, RequestCount, Paths

Flags source IPs reaching N-central administrative/API paths repeatedly without a corresponding authenticated sign-in event, consistent with alternate-path authentication bypass exploitation.

critical severity medium confidence

Data Sources

Web server / reverse proxy logs (WebServerLogs) Azure AD / SigninLogs (if federated) N-central application logs ingested via AMA or syslog

Required Tables

WebServerLogs SigninLogs

False Positives

  • Legitimate API integrations or monitoring tools that use service accounts not reflected in SigninLogs
  • Health-check or load-balancer probes hitting admin paths
  • Misconfigured log ingestion causing IP mismatch between proxy and identity logs

Sigma rule & cross-platform mapping

The detection logic for N-able N-central Authentication Bypass via Alternate Path or Channel (CVE-2026-18556) (CVE-2026-18556) above is provided in a vendor-neutral form so you can deploy it on any SIEM. The same logic is shipped here as native KQL (Microsoft Sentinel / Defender), SPL (Splunk), Elastic (Elastic Security (EQL)), QRadar (IBM QRadar (AQL)), Sumo (Sumo Logic CSE), YARA-L (Google Chronicle / SecOps), LogScale (CrowdStrike LogScale (CQL)) queries. In Sigma terms, this detection targets the following logsource:

logsource:
  category: network_connection
  product: windows

Browse the community-maintained Sigma rules for this technique:


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