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

CVE-2026-41062: AVideo Path Traversal Vulnerability

CVE-2026-41062 is a path traversal flaw in WWBN AVideo that allows attackers to bypass security checks and read arbitrary files from the server. This post covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-41062 Overview

CVE-2026-41062 is a Directory Traversal vulnerability affecting WWBN AVideo, an open source video platform. In versions 29.0 and below, the directory traversal fix introduced in commit 2375eb5e0 for objects/aVideoEncoderReceiveImage.json.php only checks the URL path component (via parse_url($url, PHP_URL_PATH)) for .. sequences. However, the downstream function try_get_contents_from_local() in objects/functionsFile.php uses explode('/videos/', $url) on the full URL string including the query string. An attacker can place the /videos/../../ traversal payload in the query string to bypass the security check and read arbitrary files from the server filesystem.

Critical Impact

Remote attackers with low privileges can bypass path traversal protections and read sensitive files from the server filesystem, potentially exposing configuration files, credentials, and other confidential data.

Affected Products

  • WWBN AVideo versions 29.0 and below
  • AVideo installations using aVideoEncoderReceiveImage.json.php endpoint
  • Systems with the vulnerable try_get_contents_from_local() function in objects/functionsFile.php

Discovery Timeline

  • April 21, 2026 - CVE CVE-2026-41062 published to NVD
  • April 22, 2026 - Last updated in NVD database

Technical Details for CVE-2026-41062

Vulnerability Analysis

This vulnerability represents a classic security bypass scenario where incomplete input validation fails to account for all attack surfaces. The initial security fix in commit 2375eb5e0 attempted to prevent directory traversal by checking only the URL path component using PHP's parse_url() function with the PHP_URL_PATH flag. This approach is fundamentally flawed because the downstream file access logic in try_get_contents_from_local() processes the entire URL string, including query parameters.

The try_get_contents_from_local() function uses explode('/videos/', $url) to extract the file path, operating on the complete URL rather than just the path component. This discrepancy creates an exploitable gap where an attacker can inject traversal sequences like ../../etc/passwd within the query string portion of the URL, completely bypassing the path-only validation.

Root Cause

The root cause of this vulnerability is a mismatch between the input validation scope and the actual data processing scope. The security check validates only parse_url($url, PHP_URL_PATH) while the downstream explode('/videos/', $url) operates on the full URL including query string parameters. This architectural inconsistency allows traversal payloads placed in query parameters to escape validation entirely, as the validation function never examines that portion of the input.

Attack Vector

The attack vector is network-based and requires low-privilege authenticated access. An attacker can craft a malicious URL containing a query string parameter with the pattern ?a=/videos/../../etc/passwd. Since the security check only examines the URL path component, the traversal sequence in the query string passes validation. When try_get_contents_from_local() processes this URL, it extracts ../../etc/passwd as the target path, allowing arbitrary file reads from the server filesystem.

php
// Initial incomplete fix in objects/aVideoEncoderReceiveImage.json.php
// Source: https://github.com/WWBN/AVideo/commit/2375eb5e0a6d3cbcfb05377657d0820a7d470b1d

 )
 
 foreach ($securityChecks as $key => $value) {
-    if(!empty($_REQUEST[$value])){
-        $_REQUEST[$value] = str_replace('../', '', $_REQUEST[$value]);
+    if (!empty($_REQUEST[$value])) {
+        // Block directory traversal in URL paths.
+        // str_replace('../','') is bypassable via '....//'; instead reject any URL
+        // whose decoded path contains '..' (covers '../', '....//'-bypass, and %2e%2e variants).
+        $decodedPath = urldecode((string)(parse_url($_REQUEST[$value], PHP_URL_PATH) ?? ''));
+        if (strpos($decodedPath, '..') !== false) {
+            unset($_REQUEST[$value]);
+        }
     }
 }

Source: GitHub Commit - Initial Fix

php
// Complete fix checking full URL including query string
// Source: https://github.com/WWBN/AVideo/commit/bd11c16ec894698e54e2cdae25026c61ad1ed441

 
 foreach ($securityChecks as $key => $value) {
     if (!empty($_REQUEST[$value])) {
-        // Block directory traversal in URL paths.
-        // str_replace('../','') is bypassable via '....//'; instead reject any URL
-        // whose decoded path contains '..' (covers '../', '....//'-bypass, and %2e%2e variants).
-        $decodedPath = urldecode((string)(parse_url($_REQUEST[$value], PHP_URL_PATH) ?? ''));
-        if (strpos($decodedPath, '..') !== false) {
+        // Block directory traversal in URL paths AND query strings.
+        // The previous check only inspected parse_url(..., PHP_URL_PATH), so a payload
+        // like http://host/x?a=/videos/../../etc/passwd bypassed it entirely because
+        // the '..' appears only in the query string component, not the path.
+        // Decode the full URL string (handles %2e%2e and similar encodings) and reject
+        // any URL that contains '..' anywhere.
+        $decodedFull = urldecode((string)$_REQUEST[$value]);
+        if (strpos($decodedFull, '..') !== false) {
             unset($_REQUEST[$value]);
         }
     }

Source: GitHub Commit - Complete Fix

php
// Defense-in-depth fix in objects/functionsFile.php
// Source: https://github.com/WWBN/AVideo/commit/bd11c16ec894698e54e2cdae25026c61ad1ed441

             $encoder = 'Encoder/';
         }
         $tryFile = "{$global['systemRootPath']}{$encoder}videos/{$parts[1]}";
+        // Defense-in-depth: validate the resolved path stays within the videos directory.
+        // explode('/videos/', $url) operates on the full URL string including query string,
+        // so a traversal payload in the query string (e.g. ?a=/videos/../../etc/passwd)
+        // populates $parts[1] with '../../etc/passwd' and escapes the directory.
+        $videosBaseDir = realpath("{$global['systemRootPath']}{$encoder}videos");
+        $realTryFile   = realpath($tryFile);
+        if ($videosBaseDir === false || $realTryFile === false
+            || strpos($realTryFile, $videosBaseDir . DIRECTORY_SEPARATOR) !== 0
+        ) {
+            _error_log("try_get_contents_from_local: blocked path traversal attempt for url={$url}");
+            return false;
+        }
         //_error_log("try_get_contents_from_local {$url} => {$tryFile}");
         if (file_exists($tryFile)) {
             return file_get_contents($tryFile);

Source: GitHub Commit - Defense in Depth

Detection Methods for CVE-2026-41062

Indicators of Compromise

  • HTTP requests to aVideoEncoderReceiveImage.json.php containing .. sequences in query string parameters
  • Access logs showing URL patterns with /videos/../../ within query strings
  • Unexpected file read attempts logged by the application error handler with message "blocked path traversal attempt"
  • Requests containing URL-encoded traversal sequences like %2e%2e%2f in query parameters

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect .. sequences in all parts of URLs including query strings
  • Monitor application logs for "try_get_contents_from_local: blocked path traversal attempt" error messages
  • Deploy regex-based detection for URL patterns matching \?.*=/videos/\.\./ in web server access logs
  • Configure SIEM alerts for anomalous file access patterns from the web application process

Monitoring Recommendations

  • Enable verbose logging on the AVideo application to capture all file access attempts
  • Monitor network traffic for HTTP requests targeting aVideoEncoderReceiveImage.json.php with suspicious query parameters
  • Set up alerts for access to sensitive system files like /etc/passwd or configuration files from unexpected sources
  • Review access logs regularly for patterns indicating directory traversal exploitation attempts

How to Mitigate CVE-2026-41062

Immediate Actions Required

  • Update WWBN AVideo to a version containing commit bd11c16ec894698e54e2cdae25026c61ad1ed441 or later
  • Review web server access logs for evidence of exploitation attempts
  • Implement WAF rules to block requests containing directory traversal patterns in all URL components
  • Restrict network access to the aVideoEncoderReceiveImage.json.php endpoint if not required

Patch Information

The vulnerability is addressed in commit bd11c16ec894698e54e2cdae25026c61ad1ed441. This fix implements two layers of protection: first, it validates the entire URL string (not just the path component) for directory traversal sequences, and second, it adds defense-in-depth validation in try_get_contents_from_local() using PHP's realpath() function to ensure resolved paths stay within the expected videos directory.

For detailed patch information, refer to the GitHub Security Advisory (GHSA-m63r-m9jh-3vc6) and the related advisory GHSA-f4f9-627c-jh33.

Workarounds

  • Disable or restrict access to the aVideoEncoderReceiveImage.json.php endpoint until patching is possible
  • Implement server-level path restriction using PHP's open_basedir directive to limit file access
  • Deploy a reverse proxy or WAF rule that strips or blocks query parameters containing .. sequences
  • Use network segmentation to limit which systems can access the vulnerable endpoint
bash
# Example Apache mod_rewrite rule to block traversal attempts
RewriteEngine On
RewriteCond %{QUERY_STRING} (\.\./|%2e%2e%2f|%2e%2e/|\.%2e/) [NC]
RewriteRule ^.*aVideoEncoderReceiveImage\.json\.php$ - [F,L]

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

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.20%

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

  • GitHub Commit Update

  • GitHub Security Advisory

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33681: WWBN AVideo Path Traversal Vulnerability

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

  • CVE-2026-33293: Wwbn Avideo Path Traversal Vulnerability

  • CVE-2026-33354: 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