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
    • 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-33717

CVE-2026-33717: Wwbn Avideo RCE Vulnerability

CVE-2026-33717 is a remote code execution flaw in Wwbn Avideo that allows attackers to upload and execute malicious PHP files via improper file handling. This post explains its impact, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-33717 Overview

CVE-2026-33717 is a critical unrestricted file upload vulnerability affecting WWBN AVideo, an open source video platform. The vulnerability exists in the downloadVideoFromDownloadURL() function within objects/aVideoEncoder.json.php, which improperly handles remote content downloads. The function saves fetched content to a web-accessible temporary directory while preserving the original URL's filename and extension, including executable extensions like .php.

By providing an invalid resolution parameter, an attacker can trigger an early die() call via the forbiddenPage() function before the temporary file can be properly moved or cleaned up. This leaves an executable PHP file persistently accessible under the web root at videos/cache/tmpFile/, enabling remote code execution on the vulnerable server.

Critical Impact

This vulnerability allows authenticated attackers to upload and execute arbitrary PHP code on vulnerable AVideo installations, potentially leading to complete server compromise, data theft, and lateral movement within the network.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • Self-hosted AVideo installations with default configurations
  • AVideo deployments with web-accessible cache directories

Discovery Timeline

  • 2026-03-23 - CVE CVE-2026-33717 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33717

Vulnerability Analysis

The vulnerability stems from CWE-434 (Unrestricted Upload of File with Dangerous Type). The downloadVideoFromDownloadURL() function is designed to fetch video content from remote URLs and process it locally. However, the function fails to properly validate or sanitize the file extension of the downloaded content before writing it to the filesystem.

When a remote URL points to a file with a .php extension, the function downloads and saves the file while preserving its dangerous extension. The file is stored in a predictable, web-accessible location (videos/cache/tmpFile/), making it trivially accessible for execution via HTTP requests.

The attack is made persistent through an error handling flaw: by supplying an invalid resolution parameter, the attacker forces the application to terminate early through the forbiddenPage() function. This premature termination occurs after the file has been written but before any cleanup or relocation logic can execute, leaving the malicious file permanently in the cache directory.

Root Cause

The root cause is twofold: first, the application fails to validate file extensions against an allowlist of safe content types before saving downloaded files. Second, the error handling path through forbiddenPage() does not include cleanup logic for partially processed files, allowing attackers to exploit the race condition between file creation and normal processing completion.

Attack Vector

This vulnerability is exploitable over the network by authenticated users with low privilege requirements. The attack requires no user interaction and follows this sequence:

  1. An authenticated attacker crafts a request to the vulnerable endpoint with a URL pointing to a malicious PHP file hosted on an attacker-controlled server
  2. The attacker includes an invalid resolution parameter in the request
  3. AVideo downloads the remote PHP file and saves it to videos/cache/tmpFile/ with its original filename
  4. The invalid resolution triggers forbiddenPage(), terminating execution before cleanup
  5. The attacker accesses the uploaded PHP file directly via the web server, achieving code execution

The vulnerability mechanism involves the application downloading remote content without extension validation and the error handling flow allowing file persistence. For complete technical details, refer to the GitHub Security Advisory GHSA-8wf4-c4x3-h952.

Detection Methods for CVE-2026-33717

Indicators of Compromise

  • Presence of .php files in the videos/cache/tmpFile/ directory that were not created by legitimate application processes
  • HTTP access logs showing requests to files under videos/cache/tmpFile/ with .php extensions
  • Web server logs indicating requests to objects/aVideoEncoder.json.php with unusual or malformed resolution parameters
  • Unexpected outbound connections from the web server to external hosts during video processing operations

Detection Strategies

  • Implement file integrity monitoring on the videos/cache/ directory tree to detect unexpected file creations
  • Configure web application firewalls to alert on requests containing .php in URL parameters destined for download functions
  • Monitor for HTTP 403/500 responses from aVideoEncoder.json.php followed by direct access to cache directories
  • Deploy endpoint detection solutions to identify PHP file execution from non-standard web application directories

Monitoring Recommendations

  • Enable verbose logging for file operations within the AVideo application directory
  • Configure SIEM rules to correlate download requests with subsequent file access in cache directories
  • Implement real-time alerting for any executable file creation in temporary or cache directories
  • Review web server access logs regularly for suspicious patterns involving the tmpFile directory

How to Mitigate CVE-2026-33717

Immediate Actions Required

  • Upgrade WWBN AVideo to a version containing commit 6da79b43484099a0b660d1544a63c07b633ed3a2 or later
  • Audit the videos/cache/tmpFile/ directory for any existing .php files and remove them immediately
  • Implement web server configuration to deny execution of PHP files in cache directories
  • Review access logs for evidence of prior exploitation attempts

Patch Information

The vulnerability has been addressed in commit 6da79b43484099a0b660d1544a63c07b633ed3a2. Organizations should update their AVideo installations by pulling the latest changes from the official repository. The patch details are available in the GitHub Commit Update and the full advisory can be reviewed at the GitHub Security Advisory GHSA-8wf4-c4x3-h952.

Workarounds

  • Configure web server to disable PHP execution in the videos/cache/ directory and its subdirectories using appropriate directives
  • Implement strict file extension validation at the web server level to block requests for .php files in cache directories
  • Deploy a web application firewall rule to block requests containing suspicious extensions in download URL parameters
  • Consider implementing network segmentation to limit the impact of potential server compromise
bash
# Apache configuration example to disable PHP execution in cache directory
# Add to .htaccess in videos/cache/ or to virtual host configuration
<Directory "/var/www/html/avideo/videos/cache">
    php_admin_flag engine off
    <FilesMatch "\.php$">
        Require all denied
    </FilesMatch>
</Directory>

# Nginx configuration example
location ~* /videos/cache/.*\.php$ {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWwbn Avideo

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.04%

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

  • GitHub Security Advisory GHSA-8wf4-c4x3-h952
  • Related CVEs
  • CVE-2026-33648: Wwbn Avideo RCE Vulnerability

  • CVE-2026-33647: Wwbn Avideo RCE Vulnerability

  • CVE-2026-33319: Wwbn Avideo RCE Vulnerability

  • CVE-2026-33478: Wwbn Avideo RCE Vulnerability
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