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-2024-40348

CVE-2024-40348: Bazarr Path Traversal Vulnerability

CVE-2024-40348 is a path traversal vulnerability in Bazarr that allows unauthenticated attackers to access unauthorized directories. This article covers the technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2024-40348 Overview

CVE-2024-40348 is a directory traversal vulnerability discovered in Bazarr version 1.4.3, a companion application used with Sonarr and Radarr for managing and downloading subtitles. The vulnerability exists in the /api/swaggerui/static endpoint, which fails to properly sanitize user input, allowing unauthenticated attackers to traverse the file system and access sensitive files outside the intended directory.

Critical Impact

Unauthenticated attackers can exploit this vulnerability to read arbitrary files from the server, potentially exposing configuration files, credentials, API keys, and other sensitive data without requiring any authentication.

Affected Products

  • Bazarr version 1.4.3
  • Potentially other versions prior to patching

Discovery Timeline

  • 2024-07-20 - CVE-2024-40348 published to NVD
  • 2025-07-08 - Last updated in NVD database

Technical Details for CVE-2024-40348

Vulnerability Analysis

This directory traversal vulnerability (CWE-22) allows unauthenticated remote attackers to read arbitrary files from the system hosting Bazarr. The /api/swaggerui/static component, which serves static files for the Swagger UI documentation interface, does not properly validate or sanitize file path inputs. This oversight enables attackers to use path traversal sequences (such as ../) to escape the intended directory and access files anywhere on the filesystem that the Bazarr process has read permissions for.

The attack requires no authentication and can be performed remotely over the network with minimal complexity. While the vulnerability primarily impacts confidentiality by enabling unauthorized file reads, it can also cause limited availability issues if exploited against critical system files.

Root Cause

The root cause of this vulnerability is improper input validation in the static file serving component of Bazarr's API. The /api/swaggerui/static endpoint fails to canonicalize or sanitize file path parameters before attempting to serve files. This allows attackers to inject directory traversal sequences like ../ that navigate outside the intended static files directory, ultimately reaching sensitive system files.

Attack Vector

The attack is network-based and requires no privileges or user interaction. An attacker can craft malicious HTTP requests to the vulnerable endpoint, embedding path traversal sequences to access files outside the web root. Typical targets include:

  • Configuration files containing database credentials
  • Application secrets and API keys
  • System files such as /etc/passwd on Linux systems
  • Log files containing sensitive information

The vulnerability can be exploited by sending specially crafted GET requests to the /api/swaggerui/static endpoint with path traversal payloads. For detailed technical information and proof of concept, refer to the GitHub Proof of Concept.

Detection Methods for CVE-2024-40348

Indicators of Compromise

  • Unusual HTTP requests to /api/swaggerui/static containing ../ sequences or URL-encoded variants (%2e%2e%2f)
  • Access logs showing requests for files outside the expected static directory
  • Multiple rapid requests to the Swagger UI static endpoint from a single source
  • Requests attempting to access known sensitive files like /etc/passwd, config.ini, or application configuration files

Detection Strategies

  • Configure web application firewalls (WAF) to detect and block path traversal patterns in URLs
  • Implement log monitoring rules to alert on requests containing directory traversal sequences
  • Deploy intrusion detection systems (IDS) with signatures for path traversal attacks
  • Monitor for anomalous file access patterns on the Bazarr host system

Monitoring Recommendations

  • Enable detailed access logging on the Bazarr application and any reverse proxy
  • Set up alerts for HTTP requests containing encoded or plain-text path traversal sequences
  • Monitor system-level file access for reads of sensitive files by the Bazarr process
  • Review access logs regularly for suspicious activity targeting the /api/swaggerui/static endpoint

How to Mitigate CVE-2024-40348

Immediate Actions Required

  • Upgrade Bazarr to a version that addresses this vulnerability if a patch is available
  • Restrict network access to Bazarr to trusted networks only using firewall rules
  • Place Bazarr behind a reverse proxy with path traversal filtering enabled
  • Disable external access to the Swagger UI endpoint if not required for operations

Patch Information

Users should check the official Bazarr repository and release notes for security updates addressing CVE-2024-40348. Upgrading to the latest available version is strongly recommended. Monitor the Bazarr GitHub repository for security advisories and patches.

Workarounds

  • Implement network segmentation to limit access to Bazarr from untrusted networks
  • Use a reverse proxy (such as nginx or Apache) configured to block requests containing path traversal sequences
  • Apply host-based firewall rules to restrict access to the Bazarr service port
  • Run Bazarr with minimal filesystem permissions to limit the impact of potential file disclosure
bash
# Example nginx configuration to block path traversal attempts
location /api/swaggerui/static {
    # Block requests containing path traversal sequences
    if ($request_uri ~* "\.\.") {
        return 403;
    }
    proxy_pass http://localhost:6767;
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechBazarr

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability92.53%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Proof of Concept
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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