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

CVE-2026-41463: ProjeQtor Path Traversal Vulnerability

CVE-2026-41463 is a ZipSlip path traversal flaw in ProjeQtor versions 7.0-12.4.3 that enables authenticated attackers to upload malicious ZIP files and achieve remote code execution. This article covers technical details, impact, and mitigation.

Published: April 30, 2026

CVE-2026-41463 Overview

ProjeQtor versions 7.0 through 12.4.3 contain a ZipSlip path traversal vulnerability (CWE-22) in the plugin upload functionality that allows authenticated attackers with upload permissions to write files outside the intended extraction directory. By crafting malicious ZIP archives containing directory traversal sequences (e.g., ../), attackers can escape the designated extraction path and write arbitrary files to web-accessible directories. This vulnerability can be leveraged to deploy PHP webshells, ultimately achieving remote code execution with the privileges of the web server process.

Critical Impact

Authenticated attackers can achieve remote code execution by exploiting unvalidated ZIP archive extraction to write malicious PHP webshells to web-accessible directories, compromising the entire web server.

Affected Products

  • ProjeQtor version 7.0 through 12.4.3
  • ProjeQtor plugin upload functionality (uploadPlugin.php)
  • Web server environments running vulnerable ProjeQtor installations

Discovery Timeline

  • 2026-04-27 - CVE-2026-41463 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-41463

Vulnerability Analysis

The ZipSlip vulnerability in ProjeQtor stems from improper handling of file paths during ZIP archive extraction within the plugin upload functionality. When a user with upload permissions submits a plugin as a ZIP archive, the application extracts its contents without properly validating or sanitizing the file paths contained within the archive entries.

An attacker can craft a malicious ZIP archive where filenames include directory traversal sequences such as ../../webroot/shell.php. When the vulnerable extraction routine processes these entries, it concatenates the malicious path with the intended extraction directory, resulting in file writes outside the secure boundary. This allows arbitrary file placement anywhere the web server process has write access.

The exploitation path typically involves uploading a ZIP archive containing a PHP webshell with a traversal-prefixed path, causing the webshell to be written to a publicly accessible web directory. Once deployed, the attacker can execute arbitrary commands through the webshell with the privileges of the web server user (commonly www-data or apache).

Root Cause

The root cause of this vulnerability is the absence of proper path validation during ZIP archive extraction. The application fails to canonicalize extracted file paths and verify they resolve within the intended destination directory before writing files. Specifically, the uploadPlugin.php endpoint does not implement checks to detect or reject path traversal sequences embedded in archive entry names, allowing attackers to break out of the extraction directory.

Attack Vector

The attack leverages the network-accessible plugin upload functionality in ProjeQtor. An authenticated attacker with plugin upload permissions crafts a malicious ZIP archive containing files with directory traversal sequences in their names. Upon upload, the vulnerable extraction logic writes the embedded files to locations outside the intended plugin directory.

The typical exploitation workflow involves:

  1. Crafting a ZIP archive with an entry named ../../../var/www/html/shell.php containing a PHP webshell
  2. Uploading the malicious archive through the plugin upload interface
  3. The extraction routine writes the webshell to the web root directory
  4. Accessing the webshell via HTTP to execute arbitrary commands on the server

This attack requires authenticated access with upload permissions but does not require user interaction beyond the initial upload action.

Detection Methods for CVE-2026-41463

Indicators of Compromise

  • Unexpected PHP files appearing in web-accessible directories outside the plugin upload path
  • Web server access logs showing requests to newly created PHP files in unusual locations
  • ZIP archives uploaded to ProjeQtor containing ../ sequences in archived filenames
  • Unusual process spawning from the web server user account (e.g., www-data executing shell commands)

Detection Strategies

  • Monitor file creation events in web root directories for unexpected PHP files not created through normal deployment processes
  • Implement web application firewall (WAF) rules to inspect uploaded ZIP archives for path traversal sequences
  • Configure file integrity monitoring (FIM) on critical web directories to detect unauthorized file additions
  • Review ProjeQtor application logs for plugin upload activity, especially from accounts with elevated permissions

Monitoring Recommendations

  • Enable detailed logging for the plugin upload functionality and archive extraction operations
  • Set up alerts for file writes outside the designated plugin extraction directory
  • Monitor for webshell indicators such as PHP files containing common webshell functions (system(), exec(), passthru(), shell_exec())
  • Implement network monitoring to detect command-and-control traffic patterns associated with webshell activity

How to Mitigate CVE-2026-41463

Immediate Actions Required

  • Upgrade ProjeQtor to a patched version that addresses CVE-2026-41463 (version 12.4.4 or later when available)
  • Restrict plugin upload permissions to only trusted administrative accounts
  • Review existing uploaded plugins and web directories for signs of compromise
  • Consider temporarily disabling the plugin upload functionality until patching is complete

Patch Information

Consult the ProjeQtor Official Site for the latest security updates addressing this vulnerability. Additional technical details are available from the VulnCheck Projeqtor Advisory. Further information can also be found at the Damiri CVE-2026-41463 Details page.

Workarounds

  • Implement strict access controls to limit plugin upload permissions to essential personnel only
  • Deploy a web application firewall with rules to block uploads containing path traversal sequences in archived file names
  • Apply file system restrictions to prevent the web server process from writing to directories outside the application scope
  • Use security modules like mod_security for Apache or equivalent protections to detect and block exploitation attempts
bash
# Example: Restrict write permissions on web directories
chmod 755 /var/www/html
chown root:root /var/www/html
# Ensure web server cannot write to web root
# Only allow writes to specific upload directories with proper validation

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechProjeqtor

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.42%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • Damiri CVE-2026-41463 Details

  • Gryfman CVE-2026-41463 Overview

  • Projeqtor Official Site

  • VulnCheck Projeqtor Advisory
  • Related CVEs
  • CVE-2026-41465: ProjeQtor Path Traversal Vulnerability

  • CVE-2026-41462: ProjeQtor SQL Injection Vulnerability

  • CVE-2026-41467: ProjeQtor Stored XSS Vulnerability

  • CVE-2026-41466: ProjeQtor Stored XSS 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