Skip to main content
CVE-2026-18556 High Patch Available

CVE-2026-18556: N-able N-central — Authentication Bypass, RMM Takeover

CVE Details

CVE ID CVE-2026-18556
CVSS Score 7.4
Severity High
Vendor N-able
Product N-central
Patch Status Available
Published August 5, 2026
EPSS Score 0.3%
CISA Patch Deadline August 7, 2026

Background

N-able N-central is a remote monitoring and management platform used by managed service providers to oversee client endpoint infrastructure. MSPs deploy N-central agents across client environments to perform patching, remote access, script execution, and configuration management at scale. The platform’s privileged position in managed IT environments makes it a high-value target: compromising N-central grants access not just to one organisation but potentially to every client endpoint under management.

CVE-2026-18556 is an authentication bypass vulnerability in N-central (CWE-288: Authentication Bypass Using an Alternate Path or Channel). CISA added it to the Known Exploited Vulnerabilities catalog on August 4, 2026, alongside a related follow-on vulnerability CVE-2026-18577, with a remediation deadline of August 7, 2026.

Technical Mechanism

CWE-288 describes vulnerabilities where authentication can be bypassed by accessing a resource through a path that does not enforce the authentication checks applied to the primary access path.

In N-central, the bypass allows unauthenticated network access to functionality that should require valid administrative credentials. The mechanism grants an attacker the equivalent of full administrative access to the N-central console without supplying a username or password.

The vulnerability has a layered history. N-able first patched CVE-2026-18556 in version 2026.2, released April 28, 2026. Subsequent analysis identified a residual bypass path not addressed by that patch, documented as CVE-2026-18577. The final remediation, N-central 2026.3 Hotfix 1, was released August 2, 2026, two days before CISA’s KEV addition.

The existence of two related CVEs reflects a common pattern in authentication bypass remediation: fixing the identified bypass path without fully auditing the authentication architecture for equivalent alternative paths.

Real-World Exploitation Evidence

Exploitation has been confirmed in the wild. Post-compromise activity observed in attacker investigations includes use of N-central’s legitimate “Take Control” feature to access managed endpoints. This is the platform’s built-in remote access capability, meaning attackers leveraged authenticated functionality rather than deploying additional tooling, reducing their detection footprint.

Attackers have been observed establishing Cloudflare Tunnel services on compromised systems for persistent network access. Cloudflare Tunnel (formerly Argo Tunnel) creates outbound-only connections from the compromised host to Cloudflare’s infrastructure, bypassing inbound firewall rules and network perimeter controls. The tunnel allows persistent remote access even after the initial N-central vulnerability is patched, making detection of the follow-on persistence mechanism critical.

The target profile of this exploitation: MSPs and their downstream clients. A single compromised N-central instance can serve as an initial access point into dozens or hundreds of downstream managed organisations.

Impact Assessment

Administrative access to N-central grants an attacker:

  • Remote code execution on any endpoint with a deployed N-central agent, via scripting capabilities or the Take Control remote access feature
  • Visibility into all monitored infrastructure, credentials stored in the platform, and configuration data for client environments
  • The ability to disable security tooling (antivirus, EDR) across managed endpoints via N-central’s management capabilities
  • Lateral movement into client environments without triggering VPN or perimeter controls, since N-central agent communications are expected network traffic

For MSPs, the secondary exposure is existential: breach of N-central effectively breaches the entire managed client portfolio. The NCSC and CISA have both noted RMM platform compromise as a common initial access vector in ransomware campaigns targeting MSPs and their clients.

Affected Versions

ProductAffected VersionsPartial FixFull Fix
N-able N-centralThrough 2026.1 (CVE-2026-18556)2026.2 (April 28, 2026)2026.3 Hotfix 1 (August 2, 2026)
N-able N-centralThrough 2026.3.1 (CVE-2026-18577)N/A2026.3.1.7 (August 2, 2026)

Remediation Steps

  1. Upgrade to N-central 2026.3 Hotfix 1 immediately. The hotfix resolves both CVE-2026-18556 and CVE-2026-18577. Version 2026.2 alone is insufficient.

  2. Hunt for Take Control sessions. Review N-central audit logs for Take Control sessions not initiated by known administrator accounts. Particular attention to sessions opened from unusual source IPs or outside normal business hours.

  3. Detect Cloudflare Tunnel persistence. Search managed endpoints for the Cloudflare Tunnel service (cloudflared) running as a system service. Look for cloudflared.exe processes or services registered under unusual names that wrap the cloudflared binary. The default service name when installed as a Windows service is Cloudflared.

  4. Review DNS for tunnel indicators. Endpoints running a Cloudflare Tunnel will make outbound DNS queries to *cfargotunnel.com and *.cloudflareaccess.com. Network logs showing these queries from endpoints not expected to use Cloudflare Tunnel are suspicious.

  5. Audit N-central administrator accounts. Check for any administrator accounts created or modified since late July 2026. Attackers may have established persistent access via legitimate-appearing accounts.

  6. Notify downstream clients. MSPs should inform clients about the vulnerability and any investigation findings. If exploitation is suspected, treat the full managed estate as potentially compromised.

Detection Guidance

For the N-central vulnerability:

# Review N-central audit log for authentication events 
# Look for admin sessions with no corresponding login credential record
# Or sessions where the source IP is not a known admin workstation
SELECT * FROM audit_log 
WHERE event_type = 'ADMIN_SESSION' 
AND source_ip NOT IN (known_admin_ips)

For Cloudflare Tunnel persistence (Windows):

# Detect cloudflared running as a service
Get-Service | Where-Object {
    $_.DisplayName -like "*cloudflare*" -or 
    (Get-WmiObject Win32_Service -Filter "Name='$($_.Name)'" | 
     Select-Object -ExpandProperty PathName) -like "*cloudflared*"
}

# Check for cloudflared.exe outside expected installation paths
Get-Process cloudflared -ErrorAction SilentlyContinue | 
Select-Object Id, MainModule

Sigma rule (Cloudflare Tunnel service registration from unexpected path):

title: Cloudflared Service Registered from Non-Standard Path
logsource:
  product: windows
  service: system
detection:
  selection:
    EventID: 7045
    ServiceName|contains: 'cloudflared'
  filter_legitimate:
    ServiceFileName|contains:
      - 'Program Files\cloudflared'
      - 'ProgramData\cloudflared'
  condition: selection and not filter_legitimate
level: high

Network detection:

DNS queries or connections to *.cfargotunnel.com or *trycloudflare.com from hosts not in an approved Cloudflare usage list warrant investigation.

Timeline

DateEvent
2026-04-28N-able releases version 2026.2 (partial fix for CVE-2026-18556)
2026-08-02N-able releases N-central 2026.3 Hotfix 1 (full fix for CVE-2026-18556 and CVE-2026-18577)
2026-08-04CISA adds CVE-2026-18556 to Known Exploited Vulnerabilities catalog
2026-08-04Active exploitation with Cloudflare Tunnel persistence confirmed
2026-08-07CISA BOD 26-04 mandatory remediation deadline

References