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

CVE-2026-35464: pyLoad Download Manager RCE Vulnerability

CVE-2026-35464 is a remote code execution flaw in pyLoad download manager that allows authenticated users to execute arbitrary code via malicious pickle payloads. This post covers technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-35464 Overview

CVE-2026-35464 is an insecure deserialization vulnerability affecting pyLoad, a free and open-source download manager written in Python. This vulnerability represents a bypass of the incomplete fix for CVE-2026-33509, which had introduced an ADMIN_ONLY_OPTIONS set to prevent non-admin users from modifying security-critical configuration options. However, the storage_folder option was not included in this protected set, allowing attackers with SETTINGS and ADD permissions to exploit a dangerous path traversal and deserialization attack chain.

Critical Impact

Attackers with low-privileged user accounts can achieve arbitrary code execution by redirecting downloads to the Flask filesystem session store and planting a malicious pickle payload.

Affected Products

  • pyLoad versions prior to commit c4cf995a2803bdbe388addfc2b0f323277efc0e1

Discovery Timeline

  • 2026-04-07 - CVE-2026-35464 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-35464

Vulnerability Analysis

This vulnerability exploits a gap in the security controls implemented to fix CVE-2026-33509. The original fix added an ADMIN_ONLY_OPTIONS set designed to block non-admin users from modifying security-critical configuration options. However, this protection was incomplete as it failed to include the storage_folder option within the restricted set.

The attack is possible because the Flask session directory resides outside both PKGDIR and userdir, effectively bypassing the existing path restriction mechanisms. This architectural oversight enables a multi-stage attack where an authenticated user with SETTINGS and ADD permissions can manipulate the download storage location to target the Flask session store.

The core issue relates to CWE-502 (Deserialization of Untrusted Data). Flask's filesystem-based session storage uses Python's pickle serialization format, which is known to be unsafe when processing untrusted data. By controlling where downloaded files are stored, an attacker can effectively inject arbitrary pickle payloads into the session directory with predictable filenames.

Root Cause

The root cause is the incomplete implementation of admin-only configuration restrictions. The storage_folder configuration option was not added to the ADMIN_ONLY_OPTIONS set, allowing lower-privileged users to modify this critical path setting. Combined with Flask's use of pickle for session serialization and the session directory being outside the protected path boundaries, this creates an exploitable deserialization vulnerability.

Attack Vector

The attack requires network access and an authenticated user account with SETTINGS and ADD permissions. The exploitation flow involves:

  1. Modifying the storage_folder configuration to point to Flask's filesystem session store directory
  2. Initiating a download that plants a malicious pickle payload as a session file with a predictable filename
  3. Sending an HTTP request with a crafted session cookie that references the planted malicious session file
  4. When Flask processes the request, it deserializes the malicious pickle payload, achieving arbitrary code execution

The security patch addresses this by expanding the protected configuration options:

python
         :param value: new config value
         :param section: 'plugin' or 'core
         """
+        try:
+            try:
+                user_info = flask.g.user_info
+            except AttributeError:
+                user_info = flask.session
+
+        # Attempt to access outside an active Flask request
+        except RuntimeError:
+            user_info = {"role": Role.ADMIN}
+        is_admin = user_info.get("role") == Role.ADMIN
 
-        ADMIN_ONLY_OPTIONS = {
+        ADMIN_ONLY_CORE_OPTIONS = {
+            ("general", "storage_folder"),
+            ("log", "syslog_host"),
+            ("log", "syslog_port"),
+            ("proxy", "password"),
+            ("proxy", "username"),
             ("reconnect", "script"),
             ("webui", "host"),
-            ("webui", "use_ssl"),
             ("webui", "ssl_cert"),
             ("webui", "ssl_key"),
-            ("log", "syslog_host"),
-            ("log", "syslog_port"),
-            ("proxy", "username"),
-            ("proxy", "password"),

Source: GitHub Commit Update

Detection Methods for CVE-2026-35464

Indicators of Compromise

  • Unexpected modifications to the storage_folder configuration option by non-admin users
  • Downloaded files appearing in Flask session storage directories
  • Unusual session files with non-standard naming patterns in the session store
  • Evidence of pickle deserialization errors or unexpected code execution in application logs

Detection Strategies

  • Monitor configuration changes to the storage_folder setting, especially from users without admin privileges
  • Implement file integrity monitoring on Flask session storage directories
  • Review audit logs for users with SETTINGS and ADD permissions making configuration changes
  • Deploy application-level logging to track all configuration modifications

Monitoring Recommendations

  • Enable verbose logging for pyLoad configuration changes and correlate with user permission levels
  • Set up alerts for any file write operations targeting the Flask session directory from the download process
  • Monitor for anomalous HTTP requests with session cookies referencing newly created session files

How to Mitigate CVE-2026-35464

Immediate Actions Required

  • Update pyLoad to a version containing commit c4cf995a2803bdbe388addfc2b0f323277efc0e1 or later
  • Review user permissions and restrict SETTINGS and ADD privileges to trusted users only
  • Audit configuration logs for any suspicious modifications to the storage_folder option
  • Consider temporarily disabling the ability for non-admin users to modify configuration settings

Patch Information

The vulnerability is fixed in commit c4cf995a2803bdbe388addfc2b0f323277efc0e1. The patch expands the ADMIN_ONLY_OPTIONS set (renamed to ADMIN_ONLY_CORE_OPTIONS) to include the storage_folder option along with additional sensitive configuration parameters. Organizations should apply this fix by updating to the latest version of pyLoad from the official repository.

For detailed patch information, see the GitHub Commit Update and the related security advisories: GHSA-4744-96p5-mp2j and GHSA-r7mc-x6x7-cqxx.

Workarounds

  • Restrict user permissions to ensure only fully trusted administrators have SETTINGS permissions
  • Implement network segmentation to limit access to the pyLoad administrative interface
  • Configure file system permissions to prevent the download process from writing to Flask session directories
  • Consider switching Flask to use a database-backed session store instead of filesystem sessions
bash
# Configuration example
# Restrict pyLoad to trusted network interfaces only
# In pyLoad configuration, ensure webui host binding is restricted:
# webui.host = 127.0.0.1

# Set restrictive file permissions on session directory
chmod 700 /path/to/flask/sessions
chown pyload:pyload /path/to/flask/sessions

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechPyload

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.08%

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

  • GitHub Security Advisory GHSA-4744

  • GitHub Security Advisory GHSA-r7mc

  • CVE-2026-33509 Record
  • Related CVEs
  • CVE-2026-35463: pyLoad Download Manager RCE Vulnerability

  • CVE-2026-33509: Pyload Download Manager RCE Vulnerability

  • CVE-2025-53890: pyLoad Download Manager RCE Vulnerability

  • CVE-2023-0297: Pyload RCE 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