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

CVE-2026-6320: Salon Booking System Path Traversal Flaw

CVE-2026-6320 is a path traversal vulnerability in Salon Booking System for WordPress that allows unauthenticated attackers to read arbitrary files. This article covers technical details, affected versions, and mitigations.

Published: May 7, 2026

CVE-2026-6320 Overview

CVE-2026-6320 is an arbitrary file read vulnerability in the Salon Booking System – Free Version plugin for WordPress. The flaw affects all versions up to and including 10.30.25. The public booking flow accepts attacker-controlled file-field values and later uses those stored values as trusted paths for email attachments. Unauthenticated attackers can read arbitrary local files and exfiltrate them through booking confirmation email attachments. The issue is tracked under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory).

Critical Impact

Unauthenticated remote attackers can exfiltrate arbitrary files from the WordPress server, including wp-config.php, by abusing the plugin's booking confirmation email attachments.

Affected Products

  • Salon Booking System – Free Version plugin for WordPress
  • All versions up to and including 10.30.25
  • WordPress sites with the public booking flow enabled

Discovery Timeline

  • 2026-05-02 - CVE-2026-6320 published to NVD
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-6320

Vulnerability Analysis

The vulnerability resides in how the Salon Booking System plugin handles file-field values supplied during the public booking process. The plugin accepts attacker-controlled values referencing file paths and stores them without validation. When the booking confirmation email is generated, the plugin treats those stored values as trusted local paths and attaches the referenced files to the outbound email. This design lets an unauthenticated attacker request that any file readable by the web server be attached to a booking confirmation message they receive. Sensitive targets include wp-config.php, private keys, log files, and database backups.

Root Cause

The root cause is a path traversal weakness combined with missing input validation on file-field values submitted through the booking form. The plugin fails to constrain submitted paths to a safe upload directory or verify that the path corresponds to a legitimate user-uploaded artifact. Stored values flow directly into the mail-attachment routine, where they are treated as trusted server-side paths.

Attack Vector

An unauthenticated attacker submits a crafted booking request with a file-field value pointing to a sensitive local file path. The attacker supplies a controlled email address as the booking contact. When the plugin processes the booking confirmation, it reads the referenced file and attaches it to the email sent to the attacker. The attack requires no authentication, no privileges, and no user interaction. See the Wordfence Vulnerability Analysis for additional technical context.

No verified public proof-of-concept code is available. The vulnerability mechanism is documented in the plugin changeset referenced in the WordPress Plugin Change Log.

Detection Methods for CVE-2026-6320

Indicators of Compromise

  • Booking submissions containing path traversal sequences such as ../ or absolute paths like /etc/passwd or /var/www/html/wp-config.php in file-field parameters.
  • Outbound emails from the WordPress site carrying attachments that match server configuration files or other non-upload paths.
  • Unexpected access to sensitive files by the PHP worker process originating from booking-related endpoints.

Detection Strategies

  • Inspect web server access logs for POST requests to the Salon Booking System endpoints with suspicious values in file-field parameters.
  • Monitor PHP mail() and SMTP relay logs for attachments referencing paths outside the WordPress uploads directory.
  • Deploy a Web Application Firewall (WAF) rule that blocks path traversal patterns in booking form submissions.

Monitoring Recommendations

  • Alert on file reads of wp-config.php, .env, or /etc/ files by the web server user account.
  • Track booking confirmation emails sent to newly registered or external addresses with non-zero attachment sizes.
  • Correlate WordPress plugin version inventory against the affected range of 10.30.25 and earlier.

How to Mitigate CVE-2026-6320

Immediate Actions Required

  • Update the Salon Booking System – Free Version plugin to a version newer than 10.30.25 once the vendor publishes a fixed release.
  • Audit recent booking submissions and outbound emails for evidence of file exfiltration attempts.
  • Rotate any secrets stored in wp-config.php, including database credentials and authentication keys, if compromise is suspected.

Patch Information

Review the WordPress Plugin Change Log for the patch commit that addresses this issue. Apply the fixed version as soon as it is available through the WordPress plugin repository. Verify the deployed plugin version after the update.

Workarounds

  • Disable or uninstall the Salon Booking System plugin until a patched version is installed.
  • Restrict file system permissions so the web server user cannot read sensitive configuration files outside the WordPress document root.
  • Configure a WAF to reject booking submissions containing ../, null bytes, or absolute paths in file-field parameters.
  • Disable outbound email attachments from the WordPress site at the mail transport layer until remediation is complete.
bash
# Example WAF rule pattern to block path traversal in booking submissions
# ModSecurity-style rule (sanitized example)
SecRule ARGS "@rx (\.\./|\.\.\\|/etc/|wp-config\.php)" \
    "id:1026320,phase:2,deny,status:403,msg:'CVE-2026-6320 path traversal attempt'"

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • WordPress Plugin Change Log

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-1921: Loco Translate Path Traversal Vulnerability

  • CVE-2026-5957: EmailKit WordPress Path Traversal Flaw

  • CVE-2025-47670: miniOrange WordPress Plugin LFI Vulnerability

  • CVE-2025-32629: WP-BusinessDirectory 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