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
    • 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-33001

CVE-2026-33001: Jenkins Path Traversal Vulnerability

CVE-2026-33001 is a path traversal vulnerability in Jenkins that allows attackers to write files to arbitrary filesystem locations via crafted archives. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-33001 Overview

A symbolic link handling vulnerability exists in Jenkins 2.554 and earlier, as well as LTS 2.541.2 and earlier, that allows arbitrary file writes during the extraction of .tar and .tar.gz archives. The vulnerability occurs because Jenkins does not safely handle symbolic links during archive extraction, enabling attackers to craft malicious archives that write files to arbitrary locations on the filesystem. The attack is restricted only by the file system access permissions of the user running Jenkins.

This vulnerability can be exploited to deploy malicious scripts or plugins on the Jenkins controller by attackers with Item/Configure permission or those able to control agent processes.

Critical Impact

Attackers can achieve arbitrary file write capabilities on the Jenkins controller, potentially leading to remote code execution through malicious script or plugin deployment.

Affected Products

  • Jenkins 2.554 and earlier
  • Jenkins LTS 2.541.2 and earlier

Discovery Timeline

  • 2026-03-18 - CVE CVE-2026-33001 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-33001

Vulnerability Analysis

This vulnerability falls under CWE-59 (Improper Link Resolution Before File Access), commonly known as a symlink attack or link following vulnerability. The flaw exists in how Jenkins processes archive files during extraction operations.

When Jenkins extracts .tar or .tar.gz archives, it fails to properly validate and handle symbolic links embedded within the archive structure. An attacker can craft a malicious archive containing symbolic links that point to locations outside the intended extraction directory. During extraction, files following these symbolic links are written to arbitrary filesystem locations, effectively bypassing directory containment.

The vulnerability requires authenticated access with Item/Configure permission, or the ability to control agent processes. This makes it exploitable by lower-privileged users within a Jenkins environment, significantly expanding the potential attack surface in multi-user Jenkins deployments.

Root Cause

The root cause is insufficient validation of symbolic link targets during archive extraction. Jenkins does not verify that symbolic links within archives resolve to paths within the intended extraction directory before following them. This allows path traversal via symlinks, enabling writes outside the designated extraction location.

The vulnerability is a classic "zip slip" variant affecting tar archives, where the archive extraction routine trusts the path information within the archive without proper sanitization.

Attack Vector

The attack is network-accessible and requires low privileges (authenticated user with Item/Configure permission or agent control). An attacker can exploit this vulnerability by:

  1. Crafting a malicious .tar or .tar.gz archive containing a symbolic link pointing to a sensitive directory (e.g., the Jenkins plugins directory)
  2. Including malicious content that will be written through the symlink
  3. Uploading the archive to Jenkins where it will be extracted (via build steps, artifact handling, or plugin functionality)
  4. Upon extraction, the malicious files are written to the target location, potentially deploying backdoor scripts or malicious plugins

The exploitation does not require user interaction and can be performed remotely over the network. The symlink attack allows files to be written anywhere the Jenkins user has write permissions, which typically includes critical directories for plugin deployment, script execution, and configuration.

Detection Methods for CVE-2026-33001

Indicators of Compromise

  • Unexpected files appearing in Jenkins plugin directories ($JENKINS_HOME/plugins/)
  • Suspicious symbolic links in extracted archive content or temporary directories
  • Unexplained modifications to Jenkins scripts or configuration files
  • Unauthorized plugin installations or modifications
  • Unusual archive extraction activities in Jenkins job logs

Detection Strategies

  • Monitor file system activities for writes outside expected extraction directories during archive operations
  • Implement file integrity monitoring (FIM) on critical Jenkins directories including $JENKINS_HOME/plugins/, $JENKINS_HOME/init.groovy.d/, and configuration directories
  • Review Jenkins audit logs for suspicious Item/Configure permission usage
  • Scan uploaded archives for symbolic links pointing outside the archive root
  • Monitor for unusual archive uploads by users with elevated permissions

Monitoring Recommendations

  • Enable detailed logging for archive extraction operations within Jenkins
  • Configure alerts for new file creation in Jenkins plugin and script directories
  • Implement real-time monitoring for symbolic link creation in temporary and extraction directories
  • Audit user activities involving archive uploads and extractions
  • Deploy endpoint detection and response (EDR) solutions to monitor Jenkins controller filesystem activities

How to Mitigate CVE-2026-33001

Immediate Actions Required

  • Upgrade Jenkins to the latest patched version immediately
  • For Jenkins weekly, upgrade to version 2.555 or later
  • For Jenkins LTS, upgrade to version 2.541.3 or later
  • Review recent archive extraction activities for signs of exploitation
  • Audit Item/Configure permission grants and restrict to trusted users only

Patch Information

Jenkins has released security updates to address this vulnerability. The fix implements proper symbolic link handling during archive extraction, preventing writes outside the intended extraction directory.

Refer to the Jenkins Security Advisory #SECURITY-3657 for complete patch details and download links.

Workarounds

  • Restrict Item/Configure permission to only highly trusted users until patching is complete
  • Implement strict access controls on Jenkins agent processes
  • Consider using a dedicated, restricted user account to run Jenkins with minimal filesystem permissions
  • Temporarily disable functionality that processes uploaded archives if feasible
  • Monitor file system activities closely and implement file integrity monitoring on critical Jenkins directories
bash
# Configuration example - Restrict Jenkins user filesystem permissions
# Ensure Jenkins runs with minimal required permissions
chown -R jenkins:jenkins $JENKINS_HOME
chmod 750 $JENKINS_HOME
chmod 750 $JENKINS_HOME/plugins

# Enable audit logging for file system changes
auditctl -w $JENKINS_HOME/plugins -p wa -k jenkins_plugins
auditctl -w $JENKINS_HOME/init.groovy.d -p wa -k jenkins_scripts

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechJenkins

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.01%

  • 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-59
  • Technical References
  • Jenkins Security Advisory #SECURITY-3657
  • Related CVEs
  • CVE-2026-33004: Jenkins LoadNinja Information Disclosure

  • CVE-2026-33002: Jenkins Auth Bypass Vulnerability

  • CVE-2026-33003: Jenkins LoadNinja Plugin API Key Exposure

  • CVE-2026-27100: Jenkins Information Disclosure Vulnerability
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