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

CVE-2026-33183: Saloon PHP Library Path Traversal Flaw

CVE-2026-33183 is a path traversal vulnerability in Saloon PHP library that allows attackers to read or write files outside the fixture directory. This post explains its impact, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-33183 Overview

A path traversal vulnerability exists in Saloon, a PHP library used to build API integrations and SDKs. Prior to version 4.0.0, fixture names were used to construct file paths under the configured fixture directory without proper validation. This allowed attackers to use path segments such as ../traversal or ../../etc/passwd to escape the intended directory, enabling read or write operations on arbitrary files accessible to the process.

Critical Impact

When fixture names are derived from user or attacker-controlled input, this vulnerability can lead to disclosure of sensitive files or overwriting of critical system files, potentially compromising the entire application and underlying system.

Affected Products

  • Saloon PHP Library versions prior to 4.0.0

Discovery Timeline

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

Technical Details for CVE-2026-33183

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as Path Traversal or Directory Traversal. The flaw resides in the fixture layer of the Saloon library, where user-supplied fixture names are concatenated directly into file paths without sanitization or validation.

When an application uses Saloon's fixture functionality for mocking API responses or recording responses for later playback, it relies on fixture names to determine file storage locations. If these fixture names contain special path characters like .. (parent directory reference), / (forward slash), or \ (backslash), an attacker can manipulate the final resolved path to point outside the intended fixture directory.

The vulnerability is exploitable over the network without requiring authentication or user interaction, making it a significant risk for applications that expose fixture name parameters to external input.

Root Cause

The root cause lies in the insufficient validation of fixture names before they are used to construct file paths. The fixture layer accepted arbitrary strings as fixture names without checking for dangerous path traversal sequences (..), path separators (/, \), or null bytes. This allowed crafted input to break out of the configured fixture directory hierarchy and access arbitrary locations on the filesystem.

Attack Vector

An attacker can exploit this vulnerability by supplying a malicious fixture name through any input vector that eventually feeds into Saloon's fixture system. Attack scenarios include:

Read Operations (Information Disclosure):
When the application reads fixtures (e.g., for mocking), an attacker-controlled fixture name like ../../etc/passwd could cause the application to read and potentially expose sensitive system files.

Write Operations (File Overwrite):
When recording API responses, a malicious fixture name could cause the application to write response data to critical system files, potentially leading to configuration tampering, code injection, or denial of service.

The attack requires no authentication and can be performed remotely if the application accepts fixture names from external sources such as request parameters, headers, or configuration values.

Detection Methods for CVE-2026-33183

Indicators of Compromise

  • Unusual file access patterns in application logs showing attempts to read or write files outside the designated fixture directory
  • Presence of path traversal sequences (../, ..\\, ....//) in HTTP request parameters or application configuration
  • Unexpected modifications to system configuration files or application files outside the normal application scope
  • Error logs indicating failed file operations in sensitive system directories

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns in incoming requests
  • Deploy file integrity monitoring (FIM) on critical system files and directories to detect unauthorized modifications
  • Enable detailed logging for file system operations within the application and monitor for anomalous access patterns
  • Conduct regular code audits to identify instances where user input flows into fixture name parameters

Monitoring Recommendations

  • Monitor application logs for path traversal attempt patterns such as encoded sequences (%2e%2e%2f, %2e%2e/, ..%2f)
  • Set up alerts for any file operations occurring outside the designated fixture directories
  • Track and audit all HTTP request parameters that could potentially influence fixture naming
  • Implement runtime application self-protection (RASP) to detect path traversal attempts at the application layer

How to Mitigate CVE-2026-33183

Immediate Actions Required

  • Upgrade Saloon PHP library to version 4.0.0 or later immediately
  • Review application code to identify all locations where user input could influence fixture names
  • Implement input validation at the application layer as an additional defense even after patching
  • Audit file system permissions to limit the impact of potential exploitation

Patch Information

The fix implemented in version 4.0.0 includes multiple layers of protection:

  1. Fixture Layer Validation: The fixture layer now rejects names containing /, \, .., or null bytes, and restricts fixture names to a safe character set
  2. Storage Layer Defense-in-Depth: The storage layer now validates that the resolved absolute path remains under the configured base directory before performing any read or write operation

For upgrade instructions, refer to the Saloon Upgrade Guide. Additional technical details are available in the GitHub Security Advisory GHSA-f7xc-5852-fj99.

Workarounds

  • If immediate upgrade is not possible, implement strict input validation on all parameters that could influence fixture names, rejecting any input containing ., /, \, or null bytes
  • Restrict file system permissions for the PHP process to limit access to only necessary directories
  • Use chroot jails or containerization to limit the filesystem scope accessible to the application
  • Disable fixture recording functionality if it is not required in production environments
bash
# Verify Saloon version and upgrade
composer show saloonphp/saloon | grep versions
composer require saloonphp/saloon:^4.0.0

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechSaloon

  • SeverityHIGH

  • CVSS Score8.0

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:U/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
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • Saloon Upgrade Guide

  • GitHub Security Advisory GHSA-f7xc-5852-fj99
  • Related CVEs
  • CVE-2026-33942: Saloon PHP Library RCE Vulnerability

  • CVE-2026-33182: Saloon PHP Library SSRF 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