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

CVE-2026-33493: Wwbn Avideo Path Traversal Vulnerability

CVE-2026-33493 is a path traversal vulnerability in Wwbn Avideo that allows authenticated users to access, steal, or delete video files outside their authorized directories. This article covers technical details, affected versions, and patches.

Published: March 27, 2026

CVE-2026-33493 Overview

CVE-2026-33493 is a Path Traversal vulnerability affecting WWBN AVideo, an open source video platform. The vulnerability exists in the objects/import.json.php endpoint, which accepts a user-controlled fileURI POST parameter with only a regex check that the value ends in .mp4. Unlike the hardened objects/listFiles.json.php endpoint which uses realpath() with a directory prefix check to restrict paths to the videos/ directory, the vulnerable endpoint performs no directory restriction.

This flaw allows an authenticated user with upload permission to access files outside intended directories, potentially compromising the confidentiality and integrity of the system.

Critical Impact

Authenticated attackers can steal private video files from other users, read sensitive text files adjacent to any .mp4 file, and delete files writable by the web server process.

Affected Products

  • WWBN AVideo versions up to and including 26.0

Discovery Timeline

  • 2026-03-23 - CVE CVE-2026-33493 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-33493

Vulnerability Analysis

The vulnerability resides in the objects/import.json.php endpoint of WWBN AVideo. The endpoint is designed to allow users to import video files by specifying a file URI. However, the implementation only validates that the provided fileURI parameter ends with the .mp4 extension using a simple regex check. This inadequate validation fails to prevent path traversal sequences such as ../ from being included in the file path.

The root issue is the inconsistent security posture between similar endpoints. While objects/listFiles.json.php was previously hardened with proper security controls including realpath() resolution and directory prefix verification to ensure all operations remain within the videos/ directory, the import.json.php endpoint lacks these critical safeguards.

This enables three distinct attack scenarios: stealing other users' private videos by importing them into an attacker's account, reading .txt, .html, or .htm files that exist adjacent to any .mp4 file on the filesystem, and deleting .mp4 files along with adjacent text files when those files are writable by the web server process.

Root Cause

The root cause is a CWE-22 (Improper Limitation of a Pathname to a Restricted Directory) vulnerability. The objects/import.json.php endpoint fails to properly sanitize user-supplied file paths before processing them. The extension-only validation provides a false sense of security while allowing arbitrary directory traversal. The missing realpath() canonicalization and directory boundary checks that were implemented in related endpoints were not applied to this import functionality.

Attack Vector

The attack is network-based and requires low-privilege authentication with upload permissions. An attacker can craft malicious POST requests to the objects/import.json.php endpoint with specially crafted fileURI values containing path traversal sequences followed by a .mp4 extension to satisfy the regex check.

For example, an attacker could supply a path like ../../../etc/private_videos/victim_video.mp4 to import another user's private video into their own account, effectively stealing confidential content. The lack of directory restriction means any .mp4 file accessible to the web server process can be targeted, regardless of its intended access controls.

Detection Methods for CVE-2026-33493

Indicators of Compromise

  • Unexpected POST requests to /objects/import.json.php containing ../ or encoded traversal sequences in the fileURI parameter
  • Web server logs showing import operations referencing file paths outside the videos/ directory
  • Audit logs indicating users gaining access to videos they did not originally upload
  • File system changes or deletions in directories that should not be modified by the application

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns in POST parameters
  • Monitor application logs for anomalous import activity, particularly requests with encoded characters like %2e%2e%2f
  • Enable file integrity monitoring on sensitive directories to detect unauthorized reads or deletions
  • Review access logs for the import.json.php endpoint for patterns indicating exploitation attempts

Monitoring Recommendations

  • Configure alerting for multiple failed or successful import attempts from the same user session targeting varied file paths
  • Implement rate limiting on the import endpoint to slow down enumeration attacks
  • Monitor for unusual file access patterns by the web server process in directories outside the application scope

How to Mitigate CVE-2026-33493

Immediate Actions Required

  • Upgrade WWBN AVideo to a version containing commit e110ff542acdd7e3b81bdd02b8402b9f6a61ad78 or later
  • Restrict access to the objects/import.json.php endpoint to only trusted administrators until patching is complete
  • Review access logs to identify any potential exploitation that may have already occurred
  • Audit file permissions to ensure the web server process has minimal write access to the filesystem

Patch Information

The vulnerability is addressed in commit e110ff542acdd7e3b81bdd02b8402b9f6a61ad78. This fix applies the same security controls used in objects/listFiles.json.php to the vulnerable import endpoint, including realpath() canonicalization and directory prefix verification to ensure all file operations are restricted to the intended videos/ directory.

For detailed patch information, refer to the GitHub Commit Reference and the GitHub Security Advisory GHSA-83xq-8jxj-4rxm.

Workarounds

  • Deploy a web application firewall rule to block requests to import.json.php containing path traversal patterns
  • Temporarily disable the import functionality by restricting access to the endpoint via web server configuration
  • Implement additional authentication requirements for the import feature as an interim control
  • Apply filesystem-level restrictions to limit the web server user's read and write access to only necessary directories
bash
# Apache configuration to restrict access to vulnerable endpoint
<Location /objects/import.json.php>
    Order deny,allow
    Deny from all
    # Allow only from trusted admin IPs
    Allow from 10.0.0.0/8
</Location>

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechWwbn Avideo

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Vendor Resources
  • GitHub Commit Reference

  • GitHub Security Advisory GHSA-83xq-8jxj-4rxm
  • Related CVEs
  • CVE-2026-41062: AVideo Path Traversal Vulnerability

  • CVE-2026-33681: WWBN AVideo Path Traversal Vulnerability

  • CVE-2026-33513: WWBN AVideo Path Traversal Vulnerability

  • CVE-2026-33293: Wwbn Avideo Path Traversal 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