The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-29771

CVE-2026-29771: Gravitl Netmaker DOS Vulnerability

CVE-2026-29771 is a denial of service flaw in Gravitl Netmaker that allows any user to repeatedly terminate the server process. This post covers the technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2026-29771 Overview

CVE-2026-29771 is a Denial of Service vulnerability in Gravitl Netmaker, a network management platform that creates networks using WireGuard. Prior to version 1.2.0, the /api/server/shutdown endpoint allows termination of the Netmaker server process via syscall.SIGINT. This allows any user to repeatedly shut down the server, causing cyclic denial of service with approximately 3-second restart intervals.

Critical Impact

Any unauthenticated attacker can repeatedly terminate the Netmaker server, causing persistent service disruption with rapid restart cycles that effectively render the network management platform unusable.

Affected Products

  • Gravitl Netmaker versions prior to 1.2.0
  • Self-hosted Netmaker deployments with exposed API endpoints
  • Enterprise environments utilizing Netmaker for WireGuard network management

Discovery Timeline

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

Technical Details for CVE-2026-29771

Vulnerability Analysis

This vulnerability stems from improper resource shutdown (CWE-404) in the Netmaker API implementation. The /api/server/shutdown endpoint exposes critical server control functionality without proper authentication or authorization checks. When this endpoint is accessed, it triggers a syscall.SIGINT signal that gracefully terminates the Netmaker server process.

The exploitation mechanism is particularly concerning because it requires no authentication, allowing any network-reachable attacker to invoke the shutdown function. The attack surface is further amplified by the server's automatic restart behavior, which creates a predictable 3-second window between shutdown and recovery, enabling attackers to script continuous denial of service attacks.

Root Cause

The root cause is the lack of authentication and authorization controls on the /api/server/shutdown endpoint. This represents a fundamental access control failure where a privileged administrative function was exposed without proper security constraints. The endpoint directly invokes system-level process termination (syscall.SIGINT) without validating whether the requesting entity has administrative privileges to perform such an action.

Attack Vector

The attack vector is network-based and requires no user interaction or special privileges. An attacker with network access to the Netmaker API can send HTTP requests to the vulnerable endpoint, triggering immediate server termination. The attack can be automated to continuously monitor for server restarts and immediately invoke shutdown again, creating a persistent denial of service condition.

The vulnerability allows for cyclic exploitation where an attacker can establish a simple loop that detects server availability and immediately terminates it, maintaining a sustained service outage with minimal attacker resources. For technical details, see the GitHub Security Advisory.

Detection Methods for CVE-2026-29771

Indicators of Compromise

  • Repeated HTTP requests to /api/server/shutdown endpoint from external or unexpected IP addresses
  • Abnormal server restart patterns with approximately 3-second intervals between restarts
  • Log entries showing multiple SIGINT signals received in rapid succession
  • Increased network traffic to API endpoints from single sources without valid authentication tokens

Detection Strategies

  • Monitor API access logs for requests to /api/server/shutdown endpoint, especially from unauthenticated sources
  • Implement alerting on server process restarts that occur more frequently than expected operational patterns
  • Deploy web application firewall (WAF) rules to detect and block suspicious requests to administrative endpoints
  • Analyze network traffic for patterns consistent with automated shutdown request loops

Monitoring Recommendations

  • Configure real-time alerting for any access attempts to the /api/server/shutdown endpoint
  • Establish baseline metrics for server uptime and alert on deviations indicating potential DoS activity
  • Implement centralized logging for all Netmaker API requests with retention for forensic analysis
  • Deploy network-level monitoring to identify sources generating high volumes of API requests

How to Mitigate CVE-2026-29771

Immediate Actions Required

  • Upgrade Gravitl Netmaker to version 1.2.0 or later immediately
  • Implement network-level access controls to restrict API access to trusted networks or IP ranges
  • Deploy reverse proxy or WAF rules to block access to the /api/server/shutdown endpoint pending upgrade
  • Review access logs for evidence of exploitation attempts prior to patching

Patch Information

This vulnerability has been patched in Netmaker version 1.2.0. Organizations should upgrade to this version or later to remediate the vulnerability. The patch implements proper authentication and authorization checks on the shutdown endpoint. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Deploy network segmentation to restrict access to the Netmaker API from untrusted networks
  • Configure firewall rules to explicitly deny access to /api/server/shutdown from external sources
  • Implement API gateway or reverse proxy authentication as an additional security layer
  • Consider temporarily disabling public API access until the patch can be applied
bash
# Example: Block access to shutdown endpoint using iptables
iptables -A INPUT -p tcp --dport 8081 -m string --string "/api/server/shutdown" --algo bm -j DROP

# Example: Nginx reverse proxy configuration to block endpoint
location /api/server/shutdown {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeDOS

  • 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:N/VI:N/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-404
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-29195: Gravitl Netmaker Auth Bypass Vulnerability

  • CVE-2026-29196: Gravitl Netmaker Information Disclosure

  • 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