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

CVE-2026-33509: Pyload Download Manager RCE Vulnerability

CVE-2026-33509 is a remote code execution flaw in Pyload download manager that allows SETTINGS users to execute arbitrary code by modifying configuration options. This post covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33509 Overview

pyLoad is a free and open-source download manager written in Python. A privilege escalation vulnerability exists in pyLoad versions 0.4.0 to before 0.5.0b3.dev97 that allows users with the non-admin SETTINGS permission to achieve Remote Code Execution (RCE) through the set_config_value() API endpoint. This vulnerability stems from improper access control that permits modification of security-critical configuration options, specifically the reconnect.script parameter, which is passed directly to subprocess.run().

Critical Impact

Attackers with low-privilege SETTINGS access can achieve full system compromise by executing arbitrary commands through the misconfigured reconnect script functionality.

Affected Products

  • pyLoad versions 0.4.0 to before 0.5.0b3.dev97
  • pyload-ng (Python package) affected versions

Discovery Timeline

  • 2026-03-24 - CVE-2026-33509 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33509

Vulnerability Analysis

This vulnerability represents a critical privilege escalation flaw in pyLoad's configuration management system. The set_config_value() API endpoint is designed to allow users to modify various application settings, but it fails to properly restrict which settings can be modified based on user privilege levels. Users with the SETTINGS permission—which is intended to be a limited, non-administrative role—can modify any configuration option without proper authorization checks.

The core issue lies in the minimal input validation implemented within set_config_value(). The only hardcoded security check in place validates modifications to general.storage_folder, leaving all other security-critical settings completely unprotected. This includes the dangerous reconnect.script configuration option, which specifies a file path that gets passed directly to Python's subprocess.run() function within the thread manager's reconnect logic.

Root Cause

The root cause is an improper privilege separation vulnerability (CWE-269: Improper Privilege Management). The application fails to implement an allowlist or path restrictions for security-critical configuration options. The set_config_value() function only validates one specific setting (general.storage_folder) while leaving other equally dangerous settings like reconnect.script completely writable by any user with SETTINGS permissions. This design flaw creates a direct path from a limited user role to arbitrary code execution.

Attack Vector

The attack vector is network-based and requires low privileges. An attacker who has obtained valid credentials with the SETTINGS permission can exploit this vulnerability remotely without any user interaction. The attack flow involves:

  1. Authenticating to pyLoad with a user account that has SETTINGS permission
  2. Calling the set_config_value() API endpoint to modify reconnect.script to point to a malicious executable or script on the system
  3. Triggering the reconnect functionality, which causes subprocess.run() to execute the attacker-controlled script path
  4. Achieving arbitrary command execution with the privileges of the pyLoad process

Since the vulnerability requires only SETTINGS permission rather than full administrative access, it represents a significant privilege escalation risk in multi-user pyLoad deployments.

Detection Methods for CVE-2026-33509

Indicators of Compromise

  • Unexpected modifications to the reconnect.script configuration value in pyLoad settings
  • API calls to set_config_value() targeting the reconnect.script parameter from non-admin users
  • Unusual process spawning from the pyLoad application, particularly unexpected child processes
  • Authentication events followed by configuration change events for security-sensitive settings

Detection Strategies

  • Monitor API access logs for calls to the set_config_value() endpoint, particularly those modifying reconnect.script or other critical settings
  • Implement file integrity monitoring on pyLoad configuration files to detect unauthorized changes
  • Review audit logs for configuration modifications by users with limited (non-admin) permissions
  • Deploy endpoint detection to identify suspicious subprocess execution originating from the pyLoad process

Monitoring Recommendations

  • Enable verbose logging for the pyLoad application to capture all configuration change events
  • Establish baseline configuration values and alert on deviations, especially for executable paths
  • Monitor network traffic for unusual API patterns suggesting automated exploitation attempts
  • Implement process tree monitoring to detect unexpected child processes spawned by pyLoad

How to Mitigate CVE-2026-33509

Immediate Actions Required

  • Upgrade pyLoad to version 0.5.0b3.dev97 or later immediately
  • Audit all user accounts with SETTINGS permissions and revoke unnecessary access
  • Review current configuration values, particularly reconnect.script, for any unauthorized modifications
  • Restrict network access to pyLoad instances to trusted networks only until patched

Patch Information

The vulnerability has been patched in pyLoad version 0.5.0b3.dev97. The fix implements proper access controls for security-critical configuration options, preventing non-admin users from modifying dangerous settings like reconnect.script. Users should upgrade immediately by following the official upgrade procedures.

For detailed patch information and security advisory, see the GitHub Security Advisory.

Workarounds

  • Restrict the SETTINGS permission to only trusted administrator accounts until the patch can be applied
  • Implement network-level access controls (firewall rules) to limit API access to the pyLoad instance
  • Monitor and lock down the reconnect.script configuration at the file system level to prevent modifications
  • Consider disabling the reconnect functionality entirely if not required for your use case
bash
# Example: Restrict pyLoad access to localhost only using iptables
iptables -A INPUT -p tcp --dport 8000 -s 127.0.0.1 -j ACCEPT
iptables -A INPUT -p tcp --dport 8000 -j DROP

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 Score8.8

  • EPSS Probability0.06%

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

  • NVD-CWE-noinfo
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35464: pyLoad Download Manager RCE Vulnerability

  • CVE-2026-35463: 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