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
    • 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-33032

CVE-2026-33032: Nginxui Nginx UI Auth Bypass Vulnerability

CVE-2026-33032 is an authentication bypass flaw in Nginxui Nginx UI that allows unauthenticated attackers to take over nginx services by exploiting the /mcp_message endpoint. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 2, 2026

CVE-2026-33032 Overview

Nginx UI is a web user interface for the Nginx web server. A critical authentication bypass vulnerability exists in versions 2.3.5 and prior where the nginx-ui MCP (Model Context Protocol) integration exposes two HTTP endpoints: /mcp and /mcp_message. While the /mcp endpoint requires both IP whitelisting and authentication via the AuthRequired() middleware, the /mcp_message endpoint only applies IP whitelisting - and critically, the default IP whitelist is empty, which the middleware treats as "allow all". This architectural flaw allows any network attacker to invoke all MCP tools without authentication.

Critical Impact

Complete Nginx service takeover is possible - attackers can restart nginx, create/modify/delete nginx configuration files, and trigger automatic config reloads without any authentication.

Affected Products

  • Nginx UI versions 2.3.5 and prior
  • nginxui nginx_ui (all versions up to and including 2.3.5)

Discovery Timeline

  • 2026-03-30 - CVE CVE-2026-33032 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33032

Vulnerability Analysis

This vulnerability represents a classic Missing Authentication for Critical Function (CWE-306) flaw in the Nginx UI application. The MCP integration was designed to provide programmatic control over the Nginx web server through HTTP endpoints, but a security oversight during implementation resulted in inconsistent authentication enforcement across these endpoints.

The architectural disparity between the two MCP endpoints creates a significant security gap. The /mcp endpoint correctly implements defense-in-depth by requiring both IP whitelist validation and user authentication through the AuthRequired() middleware. However, the /mcp_message endpoint was implemented with only the IP whitelisting check, bypassing the authentication requirement entirely.

The impact is amplified by the default configuration where the IP whitelist is empty. The middleware logic interprets an empty whitelist as permissive rather than restrictive, effectively granting access to all IP addresses. This design choice, combined with the missing authentication on /mcp_message, means that any network-accessible attacker can interact with the MCP functionality.

Root Cause

The root cause is an inconsistent application of security middleware across the MCP endpoints. The /mcp_message endpoint was not wrapped with the AuthRequired() middleware that protects the /mcp endpoint. Additionally, the IP whitelist implementation uses a permissive default (empty list = allow all) rather than a secure default (empty list = deny all), violating the principle of secure defaults.

Attack Vector

The attack vector is network-based with no authentication required. An attacker can directly access the /mcp_message endpoint from any IP address when the default configuration is in place. Through this endpoint, the attacker can invoke MCP tools that provide administrative control over the Nginx server, including:

  • Restarting the Nginx service
  • Creating new configuration files
  • Modifying existing configuration files
  • Deleting configuration files
  • Triggering automatic configuration reloads

This level of control enables complete compromise of the Nginx web server, potentially leading to traffic interception, service disruption, or using the server as a pivot point for further attacks.

The vulnerability is exploited by sending HTTP requests directly to the /mcp_message endpoint without any authentication headers or tokens. Since the endpoint lacks authentication middleware and the default IP whitelist allows all connections, these requests are processed with full administrative privileges. Attackers can manipulate Nginx configurations to redirect traffic, inject malicious content, or disable security controls. See the GitHub Security Advisory for complete technical details.

Detection Methods for CVE-2026-33032

Indicators of Compromise

  • Unexpected HTTP requests to the /mcp_message endpoint from external or unauthorized IP addresses
  • Unauthorized modifications to Nginx configuration files without corresponding administrator activity
  • Unexplained Nginx service restarts or configuration reloads in system logs
  • New or altered server blocks, upstream definitions, or location directives in Nginx configurations

Detection Strategies

  • Monitor web server access logs for requests to /mcp and /mcp_message endpoints, especially from non-administrative IP ranges
  • Implement file integrity monitoring on Nginx configuration directories to detect unauthorized changes
  • Set up alerts for Nginx service restarts that do not correlate with scheduled maintenance windows
  • Deploy network intrusion detection rules to identify MCP protocol traffic patterns from untrusted sources

Monitoring Recommendations

  • Enable verbose access logging for the Nginx UI application and retain logs for forensic analysis
  • Configure centralized log collection for both Nginx UI and the underlying Nginx server
  • Establish baseline metrics for configuration file changes and service restarts to identify anomalies
  • Implement real-time alerting for any access to MCP endpoints from IP addresses not in an explicitly defined allowlist

How to Mitigate CVE-2026-33032

Immediate Actions Required

  • Configure an explicit IP whitelist in the Nginx UI settings to restrict MCP endpoint access to known administrative IP addresses only
  • Place the Nginx UI behind a reverse proxy or VPN that enforces authentication before requests reach the application
  • Disable MCP functionality entirely if not required for your deployment
  • Review recent Nginx configuration changes and service restarts for signs of unauthorized access

Patch Information

At time of publication, there are no publicly available patches for this vulnerability. Organizations should monitor the Nginx UI GitHub Security Advisory for updates on remediation.

Workarounds

  • Restrict network access to the Nginx UI application using firewall rules to limit exposure to trusted networks only
  • Configure a non-empty IP whitelist with only explicitly trusted administrative IP addresses
  • Deploy the Nginx UI behind an authenticating reverse proxy such as OAuth2 Proxy or similar authentication gateway
  • Consider running Nginx UI in a segmented network zone with strict ingress/egress controls
bash
# Example: Restrict access to Nginx UI using iptables
# Replace 10.0.0.0/24 with your administrative network range
iptables -A INPUT -p tcp --dport 9000 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 9000 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechNginx

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-306
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33030: Nginx UI Authorization Bypass Vulnerability

  • CVE-2026-33029: Nginx UI Denial of Service Vulnerability

  • CVE-2026-33028: Nginx UI Race Condition Vulnerability

  • CVE-2026-33027: Nginx UI Path Traversal Vulnerability
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