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

CVE-2026-33627: Parse Server Information Disclosure Flaw

CVE-2026-33627 is an information disclosure vulnerability in Parse Server that exposes unsanitized auth data including MFA secrets. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33627 Overview

CVE-2026-33627 is a sensitive data exposure vulnerability in Parse Server, an open source backend that can be deployed to any infrastructure running Node.js. The vulnerability allows authenticated users to receive unsanitized authentication data when calling the GET /users/me endpoint, including sensitive credentials such as MFA TOTP secrets and recovery codes.

Critical Impact

An attacker who obtains a user's session token can extract MFA secrets to generate valid TOTP codes indefinitely, effectively bypassing multi-factor authentication protection.

Affected Products

  • Parse Server versions prior to 8.6.61
  • Parse Server 9.6.0-alpha1 through 9.6.0-alpha54
  • All Parse Server deployments running on Node.js with MFA enabled

Discovery Timeline

  • 2026-03-24 - CVE-2026-33627 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33627

Vulnerability Analysis

This vulnerability represents an information disclosure flaw (CWE-200) where sensitive authentication data is exposed to authenticated users through an API endpoint that should return sanitized user information. The core issue stems from an improper privilege context being applied during query execution.

When a user calls the GET /users/me endpoint, the server internally processes the session query using master-level authentication. This elevated privilege context inappropriately propagates through to the user data response, bypassing the auth adapter sanitization mechanisms that would normally strip sensitive fields from the response.

The vulnerability enables extraction of MFA-related secrets including TOTP shared secrets and account recovery codes. With access to the TOTP secret, an attacker can generate valid time-based one-time passwords indefinitely, completely undermining the security benefits of multi-factor authentication.

Root Cause

The root cause lies in how the /users/me endpoint handles authentication context during session queries. The endpoint uses master-level authentication internally for session validation, but this elevated context leaks through to the subsequent user data retrieval, causing the auth adapter sanitization logic to be bypassed. This results in raw, unsanitized authentication data being included in the API response.

Attack Vector

The attack requires network access and a valid session token from an authenticated user. An attacker exploiting this vulnerability would:

  1. Obtain a valid user session token (through session hijacking, XSS, or other means)
  2. Make a request to the GET /users/me endpoint using the stolen session token
  3. Extract MFA TOTP secrets and recovery codes from the unsanitized response
  4. Use the extracted secrets to generate valid TOTP codes, bypassing MFA protection

The vulnerability is exploitable remotely over the network and requires low privilege (valid authenticated session). No user interaction is required beyond the initial session token acquisition.

Detection Methods for CVE-2026-33627

Indicators of Compromise

  • Unusual or repeated requests to the /users/me endpoint from unexpected IP addresses or user agents
  • Session tokens being used from geographic locations inconsistent with normal user behavior
  • Successful MFA authentications from devices or locations not previously associated with the user account
  • Audit log entries showing API responses containing auth data fields that should be sanitized

Detection Strategies

  • Monitor Parse Server access logs for elevated request volumes to the /users/me endpoint
  • Implement anomaly detection on session token usage patterns to identify potential token theft
  • Review authentication logs for MFA codes being used from new or suspicious devices after /users/me queries
  • Configure alerting for any API responses that include sensitive auth data fields in user queries

Monitoring Recommendations

  • Enable verbose logging on the Parse Server /users/me endpoint to capture full request and response details
  • Implement rate limiting on user profile endpoints to slow potential automated extraction attempts
  • Set up alerts for session tokens being used across multiple IP addresses or geographic regions
  • Regularly audit user authentication patterns for signs of credential compromise

How to Mitigate CVE-2026-33627

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.61 or 9.6.0-alpha.55 or later immediately
  • Review access logs for potential exploitation of the /users/me endpoint
  • Consider rotating MFA secrets for all users as a precautionary measure
  • Implement additional session validation controls while applying patches

Patch Information

Parse Platform has released security patches addressing this vulnerability. The fixes are available in versions 8.6.61 for the stable branch and 9.6.0-alpha.55 for the alpha branch. The patches ensure that auth adapter sanitization is properly applied regardless of the internal authentication context used for session queries.

For detailed patch information, see the GitHub Security Advisory GHSA-37mj-c2wf-cx96. The relevant commits implementing the fix are available at:

  • Commit 5b8998e
  • Commit 875cf10

Workarounds

  • If immediate patching is not possible, consider implementing a reverse proxy or API gateway that filters sensitive auth data fields from /users/me responses
  • Temporarily disable MFA enrollment for new users until the patch can be applied
  • Implement additional application-layer validation to strip sensitive fields before returning user data
  • Monitor and restrict access to the /users/me endpoint to trusted network segments where feasible
bash
# Upgrade Parse Server to patched version
npm update parse-server@8.6.61

# Or for alpha branch users
npm update parse-server@9.6.0-alpha.55

# Verify installed version
npm list parse-server

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechParse Server

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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-200
  • Technical References
  • GitHub Pull Request

  • GitHub Pull Request
  • Vendor Resources
  • GitHub Commit Reference

  • GitHub Commit Reference

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34363: Parse Server Information Disclosure Flaw

  • CVE-2026-33323: Parse Server Information Disclosure Flaw

  • CVE-2026-33429: Parse Server Information Disclosure Flaw

  • CVE-2026-33163: Parse Server Information Disclosure Flaw
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