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

CVE-2026-33182: Saloon PHP Library SSRF Vulnerability

CVE-2026-33182 is a server-side request forgery flaw in Saloon PHP library that allows attackers to redirect requests to malicious hosts and leak credentials. This post covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33182 Overview

CVE-2026-33182 is a Server-Side Request Forgery (SSRF) and credential leakage vulnerability affecting the Saloon PHP library, a popular tool for building API integrations and SDKs. Prior to version 4.0.0, the library improperly handled URL construction when combining connector base URLs with request endpoints. When an endpoint was provided as a valid absolute URL, the code used that URL as-is, completely bypassing the configured base URL. This allowed authentication headers, cookies, and tokens attached by the connector to be sent to attacker-controlled hosts.

Critical Impact

Applications using Saloon with user-controllable endpoint parameters (such as redirect_uri or callback URLs) are vulnerable to SSRF attacks and credential theft, potentially exposing sensitive API tokens and authentication credentials to malicious third parties.

Affected Products

  • Saloon PHP Library versions prior to 4.0.0
  • Applications using Saloon connectors with user-controllable endpoint parameters
  • API integrations where redirect URIs or callback URLs can be influenced by external input

Discovery Timeline

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

Technical Details for CVE-2026-33182

Vulnerability Analysis

This vulnerability stems from insufficient input validation in Saloon's URL construction logic. The URLHelper::join() function, responsible for combining the connector's base URL with request-specific endpoints, failed to properly validate whether the provided endpoint was an absolute URL. When developers pass user-controlled values as endpoint parameters—common in OAuth flows, webhook configurations, or callback URL handling—an attacker can supply a fully-qualified URL to their own server.

The impact is twofold: First, the application unknowingly performs requests to attacker-controlled infrastructure (SSRF), potentially accessing internal services or bypassing network security controls. Second, any authentication credentials configured on the connector—including API keys, bearer tokens, session cookies, or custom headers—are transmitted to the malicious endpoint, resulting in credential leakage.

This vulnerability is classified under CWE-522 (Insufficiently Protected Credentials), as the root cause allows sensitive authentication data to be transmitted to unintended recipients.

Root Cause

The vulnerability exists in the URL joining logic within Saloon's request builder. When constructing the final request URL, the library naively concatenated or selected between the base URL and endpoint without validating the endpoint's format. If the endpoint began with a valid protocol scheme (e.g., https://), the code treated it as the complete URL, discarding the connector's base URL entirely.

This design flaw assumed that endpoint values would always be relative paths, failing to account for scenarios where endpoint parameters could be derived from external user input or configuration values. The lack of validation created an implicit trust in endpoint values that attackers could exploit.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker exploits this vulnerability by manipulating input parameters that eventually become endpoint values in Saloon requests. Common attack scenarios include:

The attacker identifies an application using Saloon where user input influences request endpoints, such as OAuth redirect URIs, webhook URLs, or API callback configurations. By supplying an absolute URL pointing to their server, the attacker causes the victim application to send authenticated requests to the malicious endpoint, capturing sensitive credentials in transit.

For technical details and verified examples, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-33182

Indicators of Compromise

  • Outbound HTTP/HTTPS requests from application servers to unexpected external domains
  • API tokens or authentication credentials appearing in logs of third-party servers
  • Unusual redirect_uri or callback URL parameters containing absolute URLs in application logs
  • Failed authentication attempts following credential exposure to unauthorized parties

Detection Strategies

  • Monitor outbound network traffic for requests to domains outside expected API endpoints
  • Implement logging of all URL parameters passed to Saloon connectors, flagging absolute URLs
  • Review application logs for OAuth or callback flows with suspicious redirect_uri values
  • Deploy web application firewalls (WAF) with rules to detect SSRF patterns in request parameters

Monitoring Recommendations

  • Enable verbose logging for Saloon connector requests during security audits
  • Set up alerts for outbound connections to IP addresses or domains not on approved allow lists
  • Monitor for authentication failures that may indicate compromised credentials
  • Conduct periodic code reviews focusing on user input handling in API integration code

How to Mitigate CVE-2026-33182

Immediate Actions Required

  • Upgrade Saloon PHP library to version 4.0.0 or later immediately
  • Audit application code for user-controllable endpoint parameters in Saloon requests
  • Review logs for evidence of exploitation or credential leakage to external hosts
  • Rotate any API keys, tokens, or credentials that may have been exposed

Patch Information

The vulnerability is fixed in Saloon version 4.0.0. The fix modifies URLHelper::join() to throw an InvalidArgumentException when the endpoint is a valid absolute URL, unless explicitly allowed by the developer. This requires callers to consciously opt-in to absolute URL functionality on a per-connector or per-request basis, preventing accidental SSRF.

For detailed upgrade instructions, refer to the Saloon Upgrade Guide. The GitHub Security Advisory provides additional context on the vulnerability and remediation.

Workarounds

  • Implement strict input validation to reject absolute URLs in endpoint parameters before passing to Saloon
  • Use allow lists for redirect_uri and callback URL domains, rejecting values pointing to external hosts
  • Deploy network-level controls to restrict outbound connections from application servers to approved destinations
  • Consider implementing request signing or URL integrity checks for callback URLs in OAuth flows
bash
# Upgrade Saloon to the patched version
composer require saloonphp/saloon:^4.0.0

# Verify the installed version
composer show saloonphp/saloon | grep versions

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechSaloon

  • SeverityMEDIUM

  • CVSS Score6.6

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/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-522
  • Technical References
  • Saloon Upgrade Guide

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

  • CVE-2026-33183: Saloon PHP Library Path Traversal Flaw
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