Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-29196

CVE-2026-29196: Gravitl Netmaker Information Disclosure

CVE-2026-29196 is an information disclosure vulnerability in Gravitl Netmaker that exposes WireGuard private keys to unauthorized platform users. This article covers the technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-29196 Overview

CVE-2026-29196 is an Improper Authorization vulnerability in Gravitl Netmaker, a network management platform that creates and manages networks using WireGuard. Prior to version 1.5.0, users assigned the platform-user role can retrieve WireGuard private keys of all WireGuard configurations in a network by calling the GET /api/extclients/{network} or GET /api/nodes/{network} API endpoints. While the Netmaker UI restricts visibility of these sensitive credentials, the underlying API endpoints return full records including private keys without filtering based on the requesting user's ownership.

Critical Impact

This vulnerability allows any authenticated platform-user to access WireGuard private keys across the entire network, potentially compromising the confidentiality of encrypted network communications and enabling unauthorized access to protected network segments.

Affected Products

  • Gravitl Netmaker versions prior to 1.5.0

Discovery Timeline

  • 2026-03-07 - CVE CVE-2026-29196 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-29196

Vulnerability Analysis

This vulnerability stems from a broken access control implementation (CWE-863: Incorrect Authorization) in Netmaker's REST API. The fundamental issue is a disconnect between the authorization checks enforced at the UI layer versus the API layer. While the web interface properly restricts users from viewing WireGuard configurations they do not own, the backend API endpoints fail to implement equivalent authorization checks.

When a user with the platform-user role makes authenticated requests to the /api/extclients/{network} or /api/nodes/{network} endpoints, the API returns complete configuration records for all external clients and nodes within the specified network. These records include sensitive WireGuard private keys that should only be accessible to the configuration owner or administrators.

The exposure of WireGuard private keys has severe security implications. An attacker with valid platform-user credentials could decrypt all traffic protected by the compromised keys, impersonate legitimate network nodes, establish unauthorized VPN connections, and potentially pivot to attack internal network resources.

Root Cause

The root cause is insufficient server-side authorization validation on the API endpoints. The application relies on UI-level access controls rather than implementing proper authorization checks at the API layer. This violates the principle of defense in depth and allows direct API access to bypass intended access restrictions. The API fails to filter returned records based on the authenticated user's ownership or role permissions.

Attack Vector

The attack requires network access to the Netmaker API and valid credentials for an account with platform-user role privileges. An attacker authenticates to the Netmaker API using their platform-user credentials and then issues GET requests to the vulnerable endpoints (/api/extclients/{network} or /api/nodes/{network}). The API returns full configuration objects including WireGuard private keys for all clients and nodes in the network, regardless of ownership. The attacker can then use the extracted private keys to decrypt network traffic, impersonate nodes, or establish unauthorized connections.

Detection Methods for CVE-2026-29196

Indicators of Compromise

  • Unusual or excessive API requests to /api/extclients/{network} or /api/nodes/{network} endpoints from non-administrative users
  • Platform-user accounts accessing external client or node configurations they do not own
  • Unexpected WireGuard connection attempts using keys that should not be accessible to certain users
  • API access logs showing bulk retrieval of network configurations by low-privileged accounts

Detection Strategies

  • Implement API audit logging to track all requests to sensitive endpoints and the user context making those requests
  • Monitor for anomalous patterns where platform-user accounts access configuration data for resources they did not create
  • Deploy web application firewall (WAF) rules to alert on suspicious patterns of API enumeration
  • Review access logs for systematic enumeration of network endpoints

Monitoring Recommendations

  • Enable detailed logging on Netmaker API endpoints, particularly for authentication and configuration retrieval operations
  • Set up alerting for failed and successful authentication attempts followed by bulk API queries
  • Establish baseline behavior for platform-user API access patterns to detect deviations
  • Monitor WireGuard connection logs for connections from unexpected source IPs or using keys that should be compartmentalized

How to Mitigate CVE-2026-29196

Immediate Actions Required

  • Upgrade Gravitl Netmaker to version 1.5.0 or later immediately
  • Rotate all WireGuard private keys that may have been exposed through vulnerable Netmaker deployments
  • Audit API access logs to identify any unauthorized access to sensitive configuration endpoints
  • Review platform-user accounts for any suspicious activity or unauthorized access patterns

Patch Information

Gravitl has released version 1.5.0 of Netmaker which addresses this vulnerability by implementing proper authorization checks on the affected API endpoints. The fix ensures that API responses are filtered based on the requesting user's ownership and role permissions, aligning API-level security with the UI restrictions. For more details, see the GitHub Release v1.5.0 and the GitHub Security Advisory GHSA-4hgg-c4rr-6h7f.

Workarounds

  • If immediate patching is not possible, consider implementing network-level access controls to restrict API access to trusted administrative networks only
  • Temporarily revoke platform-user role access for non-essential users until the patch can be applied
  • Deploy a reverse proxy with authorization rules to filter sensitive fields from API responses
  • Monitor and alert on all API access to the affected endpoints until patching is complete
bash
# Verify Netmaker version after upgrade
netmaker version
# Expected output should show v1.5.0 or higher

# Review recent API access logs for suspicious activity
grep -E "GET /api/(extclients|nodes)/" /var/log/netmaker/access.log

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechGravitl Netmaker

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Release v1.5.0
  • Vendor Resources
  • GitHub Security Advisory GHSA-4hgg-c4rr-6h7f
  • Related CVEs
  • CVE-2026-29771: Gravitl Netmaker DOS Vulnerability

  • CVE-2026-29195: Gravitl Netmaker Auth Bypass Vulnerability

  • CVE-2026-29194: Gravitl Netmaker Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English