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

CVE-2026-34784: Parse Server Auth Bypass Vulnerability

CVE-2026-34784 is an authentication bypass flaw in Parse Server that allows unauthorized file access via HTTP Range requests. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 2, 2026

CVE-2026-34784 Overview

Parse Server, an open source backend that can be deployed to any infrastructure running Node.js, contains an authorization bypass vulnerability in its file download handling. Prior to versions 8.6.71 and 9.7.1-alpha.1, file downloads via HTTP Range requests bypass the afterFind(Parse.File) trigger and its validators on storage adapters that support streaming (e.g., the default GridFS adapter). This allows unauthorized access to files that should be protected by afterFind trigger authorization logic or built-in validators such as requireUser.

Critical Impact

Attackers can bypass file access controls and download protected files without authentication by using HTTP Range requests on Parse Server instances with streaming-capable storage adapters.

Affected Products

  • Parse Server versions prior to 8.6.71
  • Parse Server versions prior to 9.7.1-alpha.1
  • Installations using streaming-capable storage adapters (e.g., GridFS)

Discovery Timeline

  • March 31, 2026 - CVE-2026-34784 published to NVD
  • April 1, 2026 - Last updated in NVD database

Technical Details for CVE-2026-34784

Vulnerability Analysis

This authorization bypass vulnerability (CWE-285: Improper Authorization) affects Parse Server's file routing mechanism when handling HTTP Range requests. The vulnerability exists in the FilesRouter.js component, where streaming file downloads fail to invoke the afterFind(Parse.File) trigger that normally validates file access permissions.

When a client makes a standard file download request, Parse Server correctly processes the request through its authorization pipeline, including afterFind triggers and validators like requireUser. However, when a client initiates an HTTP Range request (commonly used for partial content downloads or resume functionality), the streaming code path circumvents these authorization checks entirely.

This architectural oversight means that any file stored on a streaming-capable storage adapter, such as the default GridFS adapter, can be accessed without proper authentication or authorization validation.

Root Cause

The root cause lies in the FilesRouter.js component's handling of streaming file downloads. The streaming code path was implemented without properly integrating the Auth module and authorization trigger chain. When processing Range requests, the router directly streams file content to the client without first verifying that the requesting user has appropriate permissions through the afterFind trigger system.

Attack Vector

The attack vector is network-based and requires no user interaction. An unauthenticated attacker can exploit this vulnerability by sending HTTP Range requests to file endpoints on a vulnerable Parse Server instance. The attack is straightforward:

  1. Identify a Parse Server instance with file storage enabled
  2. Craft HTTP requests with a Range header to file endpoints
  3. The server bypasses afterFind trigger authorization and streams the file content
  4. Protected files are downloaded without authentication
javascript
// Security patch in src/Routers/FilesRouter.js - Adding Auth module import
 import logger from '../logger';
 const triggers = require('../triggers');
 const Utils = require('../Utils');
+const auth = require('../Auth');
 import { createSanitizedHttpError } from '../Error';
 
 export class FilesRouter {

Source: Parse Server Commit 053109b

The patch introduces the Auth module import to ensure proper authentication and authorization checks are performed during streaming file downloads.

Detection Methods for CVE-2026-34784

Indicators of Compromise

  • Unusual file download activity from unauthenticated sessions
  • HTTP requests with Range headers targeting file storage endpoints without accompanying session tokens
  • Access logs showing file downloads that bypass normal authentication patterns
  • Increased bandwidth consumption from file endpoints without corresponding authenticated user activity

Detection Strategies

  • Monitor HTTP access logs for Range requests to /files/ endpoints that lack authentication headers or session tokens
  • Implement alerting on file access attempts that do not correlate with authenticated user sessions
  • Review Parse Server logs for file access events that bypass the afterFind trigger chain
  • Deploy web application firewall (WAF) rules to flag suspicious Range request patterns

Monitoring Recommendations

  • Enable detailed logging for all file storage adapter operations
  • Implement anomaly detection for file download patterns, particularly focusing on Range request usage
  • Monitor for unauthorized access to files that should be protected by requireUser validators
  • Set up alerts for high-volume file downloads from single IP addresses without authentication

How to Mitigate CVE-2026-34784

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.71 or later for the 8.x branch
  • Upgrade Parse Server to version 9.7.1-alpha.1 or later for the 9.x branch
  • Audit file access logs for any unauthorized downloads that may have occurred prior to patching
  • Review all files protected by afterFind triggers to assess potential data exposure

Patch Information

Security patches have been released by the Parse Server maintainers. The fixes are available in versions 8.6.71 and 9.7.1-alpha.1. The patches ensure that the Auth module is properly integrated into the streaming file download code path, enabling correct authorization validation for Range requests.

Relevant security resources:

  • GitHub Security Advisory GHSA-hpm8-9qx6-jvwv
  • Parse Server Pull Request #10361
  • Parse Server Pull Request #10362

Workarounds

  • Disable HTTP Range request support at the reverse proxy or load balancer level until patching is complete
  • Implement additional network-level access controls to restrict file endpoint access to authenticated networks
  • Consider temporarily disabling streaming storage adapters in favor of non-streaming alternatives if patching cannot be immediately applied
  • Deploy WAF rules to reject Range requests to Parse Server file endpoints
bash
# Example nginx configuration to block Range requests to Parse Server files
location /parse/files/ {
    if ($http_range) {
        return 403;
    }
    proxy_pass http://parse-server:1337;
}

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

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/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-285
  • Vendor Resources
  • Parse Server Commit Update

  • Parse Server Commit Update

  • Parse Server Pull Request

  • Parse Server Pull Request

  • GitHub Security Advisory
  • 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