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-2020-37077

CVE-2020-37077: Booked Scheduler Path Traversal Flaw

CVE-2020-37077 is a directory traversal vulnerability in Booked Scheduler 2.7.7 affecting authenticated administrators. Attackers can exploit the 'tn' parameter to read unauthorized files. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2020-37077 Overview

Booked Scheduler 2.7.7 contains a directory traversal vulnerability (CWE-22) in the manage_email_templates.php script that allows authenticated administrators to access unauthorized files. Attackers can exploit the vulnerable tn parameter to read files outside the intended directory by manipulating directory path traversal techniques. This vulnerability affects the email template management functionality and could lead to exposure of sensitive system files.

Critical Impact

Authenticated administrators can exploit path traversal sequences to read arbitrary files on the server, potentially exposing configuration files, credentials, and other sensitive data.

Affected Products

  • Booked Scheduler 2.7.7
  • Earlier versions of Booked Scheduler may also be affected

Discovery Timeline

  • 2026-02-03 - CVE CVE-2020-37077 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2020-37077

Vulnerability Analysis

This directory traversal vulnerability exists in the email template management functionality of Booked Scheduler. The manage_email_templates.php script fails to properly sanitize user-supplied input in the tn parameter, which is used to specify email template names. Without adequate input validation, an attacker with administrative privileges can craft malicious requests containing path traversal sequences (such as ../) to escape the intended template directory and access files elsewhere on the file system.

The vulnerability requires authentication with administrative privileges, which limits the attack surface but still presents significant risk in multi-admin environments or scenarios where admin credentials have been compromised. Successful exploitation allows reading of arbitrary files that the web server process has permission to access, potentially including sensitive configuration files, database credentials, or system files like /etc/passwd.

Root Cause

The root cause of this vulnerability is improper input validation and lack of path canonicalization in the manage_email_templates.php script. The application fails to properly sanitize the tn parameter before using it to construct file paths. Specifically, the code does not strip or reject directory traversal sequences (../ or ..\) from user input, allowing attackers to navigate outside the intended email templates directory.

Attack Vector

The attack is executed over the network by an authenticated administrator sending a crafted HTTP request to the manage_email_templates.php endpoint. The malicious request includes path traversal sequences in the tn parameter to specify a file outside the template directory. For example, an attacker might use sequences like ../../../etc/passwd to read system files or ../../../config/config.php to access database credentials.

The attacker needs valid administrative credentials to execute this attack, as the vulnerable endpoint is protected behind authentication. Once authenticated, the attacker can systematically probe the file system to locate and exfiltrate sensitive files. For detailed technical information and proof-of-concept details, refer to the Exploit-DB entry #48428 and the VulnCheck Advisory.

Detection Methods for CVE-2020-37077

Indicators of Compromise

  • HTTP requests to manage_email_templates.php containing path traversal sequences (../, ..\, %2e%2e%2f, or %2e%2e/) in the tn parameter
  • Web server access logs showing unusual patterns of requests to the email template management endpoint
  • Unexpected file access attempts or errors in system logs related to files outside the application directory
  • Evidence of sensitive file contents being read through the application (e.g., configuration data exposure)

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block requests containing path traversal patterns in URL parameters
  • Monitor web server access logs for suspicious requests to manage_email_templates.php with encoded or literal traversal sequences
  • Configure file integrity monitoring to detect unauthorized read access to sensitive configuration files
  • Deploy SentinelOne Singularity to detect anomalous file system access patterns from web server processes

Monitoring Recommendations

  • Enable verbose logging for the Booked Scheduler application to capture all file access operations
  • Set up alerts for requests containing ../ or URL-encoded equivalents targeting email template endpoints
  • Monitor administrator account activity for unusual access patterns or bulk file reading attempts
  • Review web server error logs for "file not found" or permission denied errors that may indicate traversal attempts

How to Mitigate CVE-2020-37077

Immediate Actions Required

  • Restrict administrative access to Booked Scheduler to only trusted users and limit the number of admin accounts
  • Implement network-level access controls to limit access to the admin panel from trusted IP addresses only
  • Deploy a Web Application Firewall (WAF) with rules to block path traversal attempts
  • Review admin account credentials and enforce strong password policies
  • Consider taking the application offline until a patch is applied if the risk is deemed unacceptable

Patch Information

Administrators should check the Booked Scheduler Official Site for any available security updates or patches that address this vulnerability. If no official patch is available, consider implementing the workarounds below or consulting with the vendor for remediation guidance. The historical source code may be available at the SourceForge Archive for reference.

Workarounds

  • Implement input validation at the web server level using mod_security or similar modules to block requests containing path traversal sequences
  • Add PHP-level input sanitization by modifying the manage_email_templates.php file to use basename() or realpath() functions to prevent directory traversal
  • Restrict file system permissions so the web server user can only access necessary directories
  • Use chroot or containerization to isolate the web application and limit the impact of successful exploitation
  • Consider disabling the email template management feature if it is not required for your deployment

The following Apache configuration can help block path traversal attempts at the web server level:

apache
# Block path traversal attempts in query strings
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{QUERY_STRING} (\.\./|\.\.\\) [NC]
    RewriteRule .* - [F,L]
</IfModule>

# Alternatively with mod_security
SecRule ARGS "@contains ../" "id:1001,phase:2,deny,status:403,msg:'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/TechN/A

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:N/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • Wayback Machine SourceForge Archive

  • Booked Scheduler Official Site

  • Exploit-DB #48428

  • VulnCheck Authenticated Directory Traversal Advisory
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS 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