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

CVE-2026-33719: WWBN AVideo Auth Bypass Vulnerability

CVE-2026-33719 is an authentication bypass flaw in WWBN AVideo that allows attackers to modify CDN configurations without credentials. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33719 Overview

WWBN AVideo is an open source video platform that contains an authentication bypass vulnerability in its CDN plugin. In versions up to and including 26.0, the CDN plugin endpoints plugin/CDN/status.json.php and plugin/CDN/disable.json.php use key-based authentication with an empty string default key. When the CDN plugin is enabled but the key has not been configured (the default state), the key validation check is completely bypassed, allowing any unauthenticated attacker to modify the full CDN configuration — including CDN URLs, storage credentials, and the authentication key itself — via mass-assignment through the par request parameter.

Critical Impact

Unauthenticated attackers can take full control of CDN configuration, potentially redirecting video content delivery to malicious servers, stealing storage credentials, or locking out legitimate administrators by modifying the authentication key.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • Installations with the CDN plugin enabled but unconfigured authentication key (default state)
  • Self-hosted AVideo deployments using default configurations

Discovery Timeline

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

Technical Details for CVE-2026-33719

Vulnerability Analysis

This vulnerability represents an authentication bypass flaw (CWE-306: Missing Authentication for Critical Function) in the WWBN AVideo CDN plugin. The core issue stems from a flawed authentication design where the plugin's key-based authentication mechanism fails to properly validate requests when the authentication key is left at its default empty string value.

When the CDN plugin is enabled without a configured key, the conditional check if (!empty($obj->key)) evaluates to false, causing the entire key validation block to be skipped. This creates a situation where any unauthenticated attacker can access the CDN configuration endpoints without providing valid credentials.

The vulnerability is further compounded by a mass-assignment issue where the $_REQUEST['par'] parameter allows arbitrary object property assignment, giving attackers the ability to modify any CDN configuration setting including storage credentials and the authentication key itself.

Root Cause

The root cause is a logic flaw in the authentication implementation where the key validation only occurs if a non-empty key has been configured. Combined with an empty default key value, this creates a complete authentication bypass in the default installation state. The vulnerable code pattern checks if (!empty($obj->key)) before validating the provided key, meaning that when no key is configured, the validation is entirely skipped rather than denying access.

Attack Vector

The attack can be executed remotely over the network without any authentication or user interaction. An attacker simply needs to send HTTP requests to the vulnerable CDN plugin endpoints (plugin/CDN/status.json.php or plugin/CDN/disable.json.php) with a key parameter and malicious configuration values in the par array parameter. Since no authentication is required when the key is unconfigured, the attacker can modify CDN URLs, storage credentials, and even set a new authentication key to lock out administrators.

php
// Vulnerable code pattern from plugin/CDN/disable.json.php (before patch)
// Source: https://github.com/WWBN/AVideo/commit/adeff0a31ba04a56f411eef256139fd7ed7d4310

-if (empty($_REQUEST['key'])) {
-    $resp->msg = 'Key is empty';
-    die(json_encode($resp));
-}
-
-if (!empty($obj->key)) {
-    //check the key
-    if ($obj->key !== $_REQUEST['key']) {
-        $resp->msg = 'Key Does not match';
-        die(json_encode($resp));
-    }
-}
-$obj->key = $_REQUEST['key'];
-foreach ($_REQUEST['par'] as $key => $value) {
-    $obj->{$key} = $value;

Source: GitHub Commit adeff0a31ba04a56f411eef256139fd7ed7d4310

Detection Methods for CVE-2026-33719

Indicators of Compromise

  • Unexpected HTTP requests to /plugin/CDN/status.json.php or /plugin/CDN/disable.json.php endpoints from external IP addresses
  • Modified CDN configuration settings without authorized administrator action
  • Unusual changes to CDN URLs pointing to unknown or suspicious domains
  • Modified storage credentials or authentication keys in CDN plugin settings

Detection Strategies

  • Monitor web server access logs for requests to CDN plugin endpoints containing par parameters with configuration modification attempts
  • Implement web application firewall (WAF) rules to detect and block requests with mass-assignment patterns targeting the CDN plugin
  • Set up file integrity monitoring for AVideo configuration files to detect unauthorized changes
  • Review CDN plugin configuration regularly for unexpected modifications

Monitoring Recommendations

  • Enable detailed logging for all CDN plugin endpoint access
  • Configure alerting for any changes to CDN configuration settings outside of maintenance windows
  • Monitor outbound traffic patterns for connections to unexpected CDN or storage endpoints
  • Implement baseline monitoring for CDN configuration and alert on any deviations

How to Mitigate CVE-2026-33719

Immediate Actions Required

  • Update WWBN AVideo to a version containing commit adeff0a31ba04a56f411eef256139fd7ed7d4310 or later
  • If unable to update immediately, configure a strong, unique authentication key for the CDN plugin
  • Review current CDN configuration for any unauthorized modifications
  • Audit access logs for evidence of exploitation attempts

Patch Information

WWBN has released a security patch in commit adeff0a31ba04a56f411eef256139fd7ed7d4310 that improves key validation and response handling in the CDN disable and status endpoints. The patch ensures that authentication is properly enforced regardless of whether a key has been previously configured. Users should update to the latest version of AVideo that includes this fix.

For more information, see the GitHub Security Advisory GHSA-r64r-883r-wcwh and the patch commit details.

Workarounds

  • Configure a strong, random authentication key for the CDN plugin immediately to prevent exploitation
  • Disable the CDN plugin entirely if it is not actively being used
  • Restrict access to CDN plugin endpoints at the web server or firewall level to trusted IP addresses only
  • Implement a reverse proxy or WAF to filter requests to sensitive plugin endpoints
bash
# Configuration example
# Restrict access to CDN plugin endpoints in Apache .htaccess
<FilesMatch "(status|disable)\.json\.php$">
    <If "%{REQUEST_URI} =~ m#/plugin/CDN/#">
        Require ip 10.0.0.0/8 192.168.0.0/16
    </If>
</FilesMatch>

# Or in Nginx, add to server block:
# location ~* /plugin/CDN/(status|disable)\.json\.php$ {
#     allow 10.0.0.0/8;
#     allow 192.168.0.0/16;
#     deny all;
# }

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWwbn Avideo

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.10%

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-39366: AVideo PayPal Auth Bypass Vulnerability

  • CVE-2026-35179: WWBN AVideo Auth Bypass Vulnerability

  • CVE-2026-34737: Wwbn Avideo Auth Bypass Vulnerability

  • CVE-2026-34738: Wwbn Avideo Auth Bypass 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