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

CVE-2026-32742: Parse Server Auth Bypass Vulnerability

CVE-2026-32742 is an authentication bypass flaw in Parse Server allowing authenticated users to overwrite session fields and set arbitrary expiration dates. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-32742 Overview

CVE-2026-32742 is a session field overwrite vulnerability in Parse Server, an open source backend that can be deployed to any infrastructure that runs Node.js. This vulnerability allows an authenticated user to overwrite server-generated session fields (sessionToken, expiresAt, createdWith) when creating a session object via POST /classes/_Session. The flaw enables attackers to bypass the server's session expiration policy by setting an arbitrary far-future expiration date and allows setting predictable session token values.

Critical Impact

Authenticated attackers can bypass session expiration policies and potentially create predictable session tokens, undermining authentication security controls in Parse Server deployments.

Affected Products

  • Parse Server versions prior to 8.6.42
  • Parse Server versions 9.6.0-alpha1 through 9.6.0-alpha16
  • parseplatform parse-server for Node.js

Discovery Timeline

  • 2026-03-18 - CVE CVE-2026-32742 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-32742

Vulnerability Analysis

This vulnerability is classified under CWE-915 (Improperly Controlled Modification of Dynamically-Determined Object Attributes), commonly known as mass assignment. The core issue lies in the session creation endpoint's failure to properly filter out server-controlled fields from user-supplied input data.

When an authenticated user creates a session object through the POST /classes/_Session endpoint, the server accepts and processes all fields provided in the request body without adequate validation. This includes server-generated fields that should never be user-controllable: sessionToken, expiresAt, and createdWith. By exploiting this oversight, an attacker can craft malicious requests that set these protected fields to arbitrary values.

The security implications are significant. An attacker can set expiresAt to a date far in the future, creating sessions that effectively never expire and persist indefinitely. Additionally, the ability to specify predictable sessionToken values could facilitate session fixation attacks or make brute-force session hijacking more feasible.

Root Cause

The root cause is improper input validation in the session creation endpoint. The Parse Server failed to implement server-side filtering of protected session fields before processing user-submitted data. The application trusted client-supplied data for fields that should exclusively be generated and controlled by the server, violating the principle of never trusting user input for security-critical values.

Attack Vector

The attack requires network access and low-privilege authentication. An attacker with valid credentials to the Parse Server instance can exploit this vulnerability by sending a crafted POST request to the /classes/_Session endpoint. The request includes malicious values for server-generated fields such as a custom sessionToken or a far-future expiresAt timestamp.

The attack does not require special privileges beyond basic authentication, and no user interaction is needed beyond the attacker's own actions. The vulnerability is exploitable remotely over the network, making it accessible to any authenticated user who can reach the Parse Server API.

Detection Methods for CVE-2026-32742

Indicators of Compromise

  • Session objects in the _Session class with expiresAt dates set abnormally far into the future (e.g., years beyond standard session duration)
  • Session tokens with predictable or non-random patterns that deviate from server-generated token formats
  • Unusual POST requests to /classes/_Session containing sessionToken, expiresAt, or createdWith fields in the request body

Detection Strategies

  • Implement API request logging to capture and analyze all requests to the /classes/_Session endpoint
  • Create alerts for session creation requests that include protected fields (sessionToken, expiresAt, createdWith) in the request body
  • Periodically audit the _Session collection for sessions with anomalous expiration dates or creation metadata

Monitoring Recommendations

  • Monitor Parse Server access logs for repeated session creation attempts from single users
  • Set up database-level monitoring to detect sessions with expiresAt values exceeding organizational policy limits
  • Review authentication patterns for accounts creating multiple persistent sessions

How to Mitigate CVE-2026-32742

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.42 or 9.6.0-alpha.17 or later immediately
  • Audit existing sessions in the _Session class for suspicious expiresAt values or unusual sessionToken patterns
  • Invalidate and regenerate any sessions suspected of being created through exploitation
  • Review API access logs for evidence of exploitation attempts

Patch Information

The Parse Server maintainers have released security patches that address this vulnerability. Version 8.6.42 provides the fix for the stable 8.x branch, while version 9.6.0-alpha.17 addresses the issue in the 9.x alpha series. The patches implement server-side filtering that removes sessionToken, expiresAt, and createdWith fields from user-supplied data before processing session creation requests.

For additional technical details, refer to GitHub Pull Request #10195 and GitHub Pull Request #10196. The full security advisory is available at GitHub Security Advisory GHSA-5v7g-9h8f-8pgg.

Workarounds

  • Implement a beforeSave trigger on the _Session class to validate and reject or strip user-supplied values for sessionToken, expiresAt, and createdWith fields
  • Apply network-level restrictions to limit access to the Parse Server API to trusted sources only
  • Consider implementing additional authentication controls such as IP allowlisting for sensitive operations
javascript
// Workaround: beforeSave trigger for _Session class
Parse.Cloud.beforeSave('_Session', (request) => {
  // Strip server-generated fields from user input
  const protectedFields = ['sessionToken', 'expiresAt', 'createdWith'];
  
  if (!request.master) {
    protectedFields.forEach(field => {
      if (request.object.has(field) && request.object.dirty(field)) {
        request.object.unset(field);
      }
    });
  }
});

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechParse Server

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-915
  • Technical References
  • GitHub Pull Request #10195

  • GitHub Pull Request #10196
  • Vendor Resources
  • GitHub Security Advisory GHSA-5v7g-9h8f-8pgg
  • Related CVEs
  • CVE-2026-39381: Parse Server Auth Bypass Vulnerability

  • CVE-2026-34373: Parse Server GraphQL Auth Bypass Flaw

  • CVE-2026-34532: Parse Server Auth Bypass Vulnerability

  • CVE-2026-34574: Parse Server 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