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

CVE-2026-41058: AVideo Path Traversal Vulnerability

CVE-2026-41058 is a path traversal flaw in AVideo's CloneSite feature that allows attackers to delete arbitrary files using directory traversal sequences. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-41058 Overview

CVE-2026-41058 is a path traversal vulnerability affecting WWBN AVideo, an open source video platform. The vulnerability exists due to an incomplete fix for the CloneSite deleteDump parameter, which fails to apply proper path traversal filtering. This allows authenticated attackers to delete arbitrary files on the server via ../../ directory traversal sequences passed through the GET parameter, ultimately calling unlink() on attacker-controlled file paths.

Critical Impact

Authenticated attackers can delete arbitrary files on the server, potentially leading to denial of service, data loss, or compromise of system integrity by removing critical configuration or application files.

Affected Products

  • WWBN AVideo version 29.0 and below
  • AVideo installations with CloneSite functionality enabled
  • Self-hosted AVideo video platform deployments

Discovery Timeline

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

Technical Details for CVE-2026-41058

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Path Traversal), a common weakness where user input is not properly sanitized before being used in file system operations. The root issue stems from an incomplete security patch that was intended to address path traversal in the CloneSite feature's deleteDump parameter.

The vulnerability allows network-based attacks with low complexity, requiring only low-level privileges to exploit. While no confidential data is directly exposed through this flaw, successful exploitation can result in high integrity and availability impact through the deletion of arbitrary files on the target system.

Root Cause

The incomplete fix for the AVideo CloneSite feature's deleteDump parameter fails to implement comprehensive path traversal filtering. When user-supplied input is passed to the unlink() PHP function without adequate sanitization, attackers can craft malicious requests containing directory traversal sequences (../../) to escape the intended directory scope and target files anywhere on the file system accessible to the web server process.

Attack Vector

The attack vector is network-based and targets the CloneSite functionality within AVideo. An authenticated attacker with low-level privileges can craft a malicious GET request containing path traversal sequences in the deleteDump parameter. When processed by the vulnerable code path, the unsanitized input is passed directly to the PHP unlink() function, which deletes the specified file.

For example, an attacker could construct a request to delete critical configuration files, database files, or application code by traversing out of the intended dump directory and specifying target files relative to the web root or system directories. The vulnerability mechanism involves crafting GET requests with payloads like deleteDump=../../path/to/target/file to reach files outside the intended directory scope. For detailed technical information, see the GitHub Security Advisory GHSA-5879.

Detection Methods for CVE-2026-41058

Indicators of Compromise

  • HTTP GET requests to CloneSite endpoints containing ../ or ..%2F sequences in the deleteDump parameter
  • Unexpected file deletion events in web server logs, particularly affecting files outside the AVideo dump directories
  • Web server access logs showing repeated requests to CloneSite functionality with encoded path traversal patterns
  • Missing critical application files, configuration files, or database files without authorized administrative action

Detection Strategies

  • Configure Web Application Firewalls (WAF) to detect and block path traversal patterns including ../, ..%2F, ..%252F, and other encoded variants
  • Implement file integrity monitoring (FIM) on critical system and application files to detect unauthorized deletions
  • Review web server access logs for suspicious CloneSite requests with unusual parameter values
  • Deploy intrusion detection rules to flag HTTP requests containing directory traversal sequences targeting AVideo endpoints

Monitoring Recommendations

  • Enable verbose logging on AVideo application to capture all file system operations
  • Monitor file deletion events on servers hosting AVideo, particularly outside designated upload and dump directories
  • Set up alerts for HTTP 200 responses to CloneSite requests containing encoded special characters
  • Implement real-time log analysis to correlate multiple path traversal attempts from the same source

How to Mitigate CVE-2026-41058

Immediate Actions Required

  • Update AVideo to a version containing commit 3c729717c26f160014a5c86b0b6accdbd613e7b2 or later
  • Review web server logs for evidence of exploitation attempts targeting the deleteDump parameter
  • Implement WAF rules to block path traversal patterns while awaiting patching
  • Audit file system permissions to ensure the web server process has minimal write and delete access

Patch Information

The vulnerability has been addressed in GitHub Commit 3c72971, which contains an updated fix for the path traversal filtering issue. This commit supersedes the incomplete fix in GitHub Commit 941decD. Administrators should ensure their AVideo installation includes commit 3c729717c26f160014a5c86b0b6accdbd613e7b2 or update to the latest available version. Additional details are available in the GitHub Security Advisory GHSA-xmjm.

Workarounds

  • Disable or restrict access to the CloneSite functionality if not required for operations
  • Implement web server level access controls to limit who can access CloneSite endpoints
  • Deploy a reverse proxy or WAF with strict input validation rules blocking path traversal sequences
  • Run AVideo under a restricted user account with minimal file system permissions
bash
# Example Apache ModSecurity rule to block path traversal in deleteDump parameter
SecRule ARGS:deleteDump "@contains ../" \
    "id:100001,\
    phase:2,\
    deny,\
    status:403,\
    log,\
    msg:'Path traversal attempt blocked in AVideo deleteDump parameter'"

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechAvideo

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.04%

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

  • GitHub Commit 941decD

  • GitHub Security Advisory GHSA-5879

  • GitHub Security Advisory GHSA-xmjm
  • Related CVEs
  • CVE-2026-39369: AVideo Path Traversal Vulnerability

  • CVE-2026-41063: WWBN AVideo XSS Vulnerability

  • CVE-2026-41060: WWBN AVideo SSRF Vulnerability

  • CVE-2026-40925: WWBN AVideo CSRF 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