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-34200

CVE-2026-34200: Nhost CLI MCP Authentication Bypass Flaw

CVE-2026-34200 is an authentication bypass vulnerability in Nhost CLI MCP server that allows malicious websites to invoke privileged tools using developer credentials. This article covers technical details, affected versions, and mitigations.

Published: April 2, 2026

CVE-2026-34200 Overview

CVE-2026-34200 is a Missing Authentication vulnerability affecting the Nhost CLI MCP server, an open source Firebase alternative with GraphQL. When the MCP server is explicitly configured to listen on a network port (a non-default configuration), it applies no inbound authentication and does not enforce strict CORS. This allows a malicious website visited on the same machine to issue cross-origin requests to the MCP server and invoke privileged tools using the developer's locally configured credentials.

Critical Impact

Attackers can exploit missing authentication and CORS enforcement to gain unauthorized access to privileged developer tools and locally configured credentials through malicious cross-origin requests.

Affected Products

  • Nhost CLI versions prior to 1.41.0
  • Nhost MCP Server with network port binding enabled (non-default configuration)

Discovery Timeline

  • 2026-03-31 - CVE-2026-34200 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34200

Vulnerability Analysis

The vulnerability stems from CWE-306 (Missing Authentication for Critical Function). When the Nhost CLI MCP server is explicitly configured with the --bind flag to listen on a network port, it fails to implement any authentication mechanism for inbound connections. Additionally, the server does not enforce strict Cross-Origin Resource Sharing (CORS) policies.

This combination allows an attacker-controlled website to make cross-origin HTTP requests to the locally running MCP server. Since no authentication is required and CORS restrictions are not properly enforced, the malicious site can successfully invoke privileged server functions. These operations execute with the permissions of the developer's locally configured credentials, potentially exposing sensitive development resources and capabilities.

It's important to note that this vulnerability requires two explicit, non-default configuration steps to be exploitable. The default nhost mcp start configuration is not affected, which significantly limits the attack surface to developers who have manually enabled network port binding.

Root Cause

The root cause is the absence of authentication middleware and improper CORS configuration in the MCP server when bound to a network port. The server was designed primarily for local stdio-based communication and lacked the necessary security controls for network-exposed operation. The --bind flag functionality was implemented without corresponding authentication and CORS enforcement mechanisms.

Attack Vector

The attack requires the victim developer to have configured the MCP server to bind to a network port. Once exposed, an attacker can craft a malicious webpage that, when visited by the victim in their browser, executes JavaScript to send cross-origin requests to the MCP server running on localhost. Since the server lacks authentication and proper CORS enforcement, these requests succeed and execute privileged operations using the developer's credentials.

The security patch removes the network binding capability entirely to eliminate this attack surface:

go
 const (
 	flagNhostAuthURL    = "nhost-auth-url"
 	flagNhostGraphqlURL = "nhost-graphql-url"
-	flagBind            = "bind"
 )

 const (

Source: GitHub Commit

The fix completely removes the --bind flag option, ensuring the MCP server can only operate via stdio and cannot be exposed to network-based attacks.

Detection Methods for CVE-2026-34200

Indicators of Compromise

  • Unexpected network connections to local MCP server ports from browser processes
  • Cross-origin HTTP requests targeting localhost ports associated with Nhost MCP server
  • Unusual GraphQL operations or API calls originating from web browser contexts
  • Log entries showing privileged tool invocations without corresponding developer activity

Detection Strategies

  • Monitor for processes listening on network ports with the nhost CLI executable
  • Audit developer workstations for Nhost CLI configurations that include the --bind flag
  • Implement network traffic analysis to detect cross-origin requests to localhost development services
  • Review browser network logs for suspicious requests to local development server endpoints

Monitoring Recommendations

  • Deploy endpoint detection to alert on Nhost CLI processes with network socket bindings
  • Configure firewall rules to block external access to common development server ports
  • Implement browser-based security controls to detect and block suspicious localhost requests
  • Establish baseline developer tool configurations and alert on deviations

How to Mitigate CVE-2026-34200

Immediate Actions Required

  • Upgrade Nhost CLI to version 1.41.0 or later immediately
  • Audit existing Nhost CLI configurations for usage of the --bind flag
  • Stop any running MCP server instances configured with network port binding
  • Review access logs for any suspicious activity that may indicate prior exploitation

Patch Information

The vulnerability has been patched in Nhost CLI version 1.41.0. The fix removes the ability to bind the MCP server to a network port entirely, eliminating the attack vector. Users should update to the patched version as soon as possible. For detailed patch information, see the GitHub Security Advisory and the associated pull request.

Workarounds

  • Immediately stop using the --bind flag with the MCP server command
  • Use the default stdio-based communication instead of network port binding
  • If network binding is required, implement a reverse proxy with authentication in front of the MCP server
  • Restrict browser access on development machines to prevent visiting untrusted websites while MCP server is running
bash
# Use the default (secure) configuration
nhost mcp start

# Avoid the vulnerable configuration (do not use)
# nhost mcp start --bind 0.0.0.0:8080  # INSECURE - do not use

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechNhost

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:P/VC:H/VI:H/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-306
  • Technical References
  • GitHub Commit Log

  • GitHub Pull Request

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34969: Nhost Information Disclosure Vulnerability

  • CVE-2026-33221: Nhost MIME Type Validation 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