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-2025-64430

CVE-2025-64430: Parse Server SSRF Vulnerability

CVE-2025-64430 is a Server-Side Request Forgery flaw in Parse Server's file upload functionality that allows attackers to execute arbitrary URIs. This post covers the technical details, affected versions, and mitigation.

Published: April 15, 2026

CVE-2025-64430 Overview

A Server-Side Request Forgery (SSRF) vulnerability has been identified in Parse Server, an open source backend that can be deployed to any infrastructure that can run Node.js. The vulnerability exists in the file upload functionality when attempting to upload a Parse.File with a uri parameter, allowing execution of arbitrary URIs against internal or external targets.

Critical Impact

This SSRF vulnerability allows unauthenticated attackers to force the Parse Server to make HTTP requests to arbitrary URIs, potentially exposing internal network services or causing denial of service conditions.

Affected Products

  • Parse Server versions 4.2.0 through 7.5.3
  • Parse Server versions 8.0.0 through 8.3.1-alpha.1
  • Node.js deployments running vulnerable Parse Server instances

Discovery Timeline

  • 2025-11-07 - CVE CVE-2025-64430 published to NVD
  • 2025-11-12 - Last updated in NVD database

Technical Details for CVE-2025-64430

Vulnerability Analysis

The vulnerability stems from Parse Server's file upload feature, which allows users to upload files by providing a URI instead of direct file data. When a user submits a file upload request with a uri parameter, the Parse Server retrieves the file data from the specified URI without proper validation. This design flaw enables attackers to force the server to make outbound HTTP requests to arbitrary destinations.

The vulnerability is classified under CWE-918 (Server-Side Request Forgery), which occurs when a web application fetches a remote resource without sufficiently validating the user-supplied URL. In this case, the server crashes upon receiving the response, resulting in a denial of service condition rather than data exfiltration.

Root Cause

The root cause lies in the downloadFileFromURI function within src/Routers/FilesRouter.js. This function uses Node.js's built-in http module to fetch content from user-supplied URIs without implementing proper URL validation, allowlisting, or blocklisting mechanisms. The addFileDataIfNeeded function checks if the file source format is uri and then directly invokes the download function with the untrusted URI.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can craft a malicious file upload request containing a uri parameter pointing to internal network resources (such as http://localhost:6379 for Redis, http://169.254.169.254 for cloud metadata services, or internal API endpoints). When the Parse Server processes this request, it initiates an HTTP GET request to the specified URI, potentially:

  1. Probing internal network services for reconnaissance
  2. Accessing cloud provider metadata endpoints
  3. Interacting with internal APIs that trust local traffic
  4. Causing server crashes leading to denial of service
javascript
// Vulnerable code removed in security patch (src/Routers/FilesRouter.js)
// Source: https://github.com/parse-community/parse-server/commit/8bbe3efbcf4a3b66f4a8db9bfb18cd98c050db51

 import Config from '../Config';
 import logger from '../logger';
 const triggers = require('../triggers');
-const http = require('http');
 const Utils = require('../Utils');
 
-const downloadFileFromURI = uri => {
-  return new Promise((res, rej) => {
-    http
-      .get(uri, response => {
-        response.setDefaultEncoding('base64');
-        let body = `data:${response.headers['content-type']};base64,`;
-        response.on('data', data => (body += data));
-        response.on('end', () => res(body));
-      })
-      .on('error', e => {
-        rej(`Error downloading file from ${uri}: ${e.message}`);
-      });
-  });
-};
-
-const addFileDataIfNeeded = async file => {
-  if (file._source.format === 'uri') {
-    const base64 = await downloadFileFromURI(file._source.uri);
-    file._previousSave = file;
-    file._data = base64;
-    file._requestTask = null;
-  }
-  return file;
-};

Detection Methods for CVE-2025-64430

Indicators of Compromise

  • Unexpected outbound HTTP requests originating from Parse Server processes to internal IP ranges (e.g., 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16)
  • HTTP requests to cloud metadata endpoints such as 169.254.169.254 from Parse Server
  • Parse Server crash logs indicating errors during file upload operations with URI-based sources
  • Unusual network traffic patterns from Parse Server to localhost or internal services

Detection Strategies

  • Monitor Parse Server application logs for file upload requests containing uri parameters with internal or suspicious destinations
  • Implement network-level monitoring for outbound HTTP traffic from Parse Server nodes to internal network ranges
  • Deploy Web Application Firewall (WAF) rules to detect and block file upload requests with uri parameters pointing to restricted addresses
  • Use SentinelOne Singularity Platform to detect anomalous network behavior from Node.js processes

Monitoring Recommendations

  • Enable detailed access logging for Parse Server file upload endpoints
  • Configure alerts for Parse Server process crashes or restarts that may indicate exploitation attempts
  • Monitor DNS queries from Parse Server instances for resolution of internal hostnames or metadata service domains
  • Implement egress filtering and logging to track all outbound connections from Parse Server infrastructure

How to Mitigate CVE-2025-64430

Immediate Actions Required

  • Upgrade Parse Server to version 7.5.4 or 8.4.0-alpha.1 immediately to apply the security fix
  • If immediate upgrade is not possible, disable or restrict access to the file upload endpoint
  • Implement network-level controls to block outbound requests from Parse Server to sensitive internal resources
  • Review Parse Server logs for any evidence of exploitation attempts

Patch Information

The Parse Server development team has addressed this vulnerability by completely removing the URI-based file download functionality. The fix eliminates the downloadFileFromURI function and the addFileDataIfNeeded helper that processed URI-based file uploads. Users should upgrade to the patched versions:

  • Version 7.5.4 for the 7.x release branch
  • Version 8.4.0-alpha.1 for the 8.x release branch

For detailed patch information, refer to the GitHub Security Advisory GHSA-x4qj-2f4q-r4rx and the related pull requests #9903 and #9904.

Workarounds

  • Deploy a reverse proxy or WAF in front of Parse Server to filter file upload requests containing uri parameters
  • Implement network segmentation to restrict Parse Server's ability to reach internal services
  • Use firewall rules to block outbound traffic from Parse Server to internal IP ranges and cloud metadata endpoints
  • Temporarily disable file upload functionality if the feature is not critical to operations
bash
# Example: iptables rules to block SSRF attempts to internal networks and cloud metadata
# Block outbound connections to common internal ranges
iptables -A OUTPUT -m owner --uid-owner parseserver -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -m owner --uid-owner parseserver -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -m owner --uid-owner parseserver -d 192.168.0.0/16 -j DROP
iptables -A OUTPUT -m owner --uid-owner parseserver -d 169.254.169.254 -j DROP

# Log blocked attempts for monitoring
iptables -A OUTPUT -m owner --uid-owner parseserver -d 127.0.0.0/8 -j LOG --log-prefix "SSRF_BLOCKED: "
iptables -A OUTPUT -m owner --uid-owner parseserver -d 127.0.0.0/8 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechParse Server

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Pull Request #9903

  • GitHub Pull Request #9904

  • GitHub Security Advisory GHSA-x4qj-2f4q-r4rx
  • Related CVEs
  • CVE-2026-39321: Parse Server Information Disclosure Flaw

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

  • CVE-2026-35200: Parse Server File Upload Vulnerability

  • CVE-2026-34373: Parse Server GraphQL Auth Bypass Flaw
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