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

CVE-2026-34369: WWBN AVideo Auth Bypass Vulnerability

CVE-2026-34369 is an authentication bypass vulnerability in WWBN AVideo that allows unauthenticated attackers to access password-protected videos. This post covers its technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-34369 Overview

WWBN AVideo is an open source video platform. In versions up to and including 26.0, the get_api_video_file and get_api_video API endpoints in AVideo return full video playback sources (direct MP4 URLs, HLS manifests) for password-protected videos without verifying the video password. While the normal web playback flow enforces password checks via the CustomizeUser::getModeYouTube() hook, this enforcement is completely absent from the API code path. An unauthenticated attacker can retrieve direct playback URLs for any password-protected video by calling the API directly.

Critical Impact

Unauthenticated attackers can bypass password protection on videos by directly calling API endpoints, exposing private video content without requiring any credentials.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • All instances using password-protected video functionality

Discovery Timeline

  • 2026-03-27 - CVE CVE-2026-34369 published to NVD
  • 2026-03-31 - Last updated in NVD database

Technical Details for CVE-2026-34369

Vulnerability Analysis

This vulnerability is classified under CWE-862 (Missing Authorization). The core issue lies in an inconsistent security model between the web-based playback interface and the API endpoints. While the web interface properly enforces password verification through the CustomizeUser::getModeYouTube() hook before granting access to protected videos, the API endpoints get_api_video_file and get_api_video were implemented without equivalent authorization checks. This creates a bypass where attackers can circumvent password protection entirely by directly interacting with the API layer.

Root Cause

The root cause is a missing authorization check in the API code path within plugin/API/API.php. The developers implemented password verification logic in the web playback flow but failed to extend this security control to the corresponding API endpoints. This oversight allows direct API calls to retrieve video playback URLs, HLS manifests, and direct MP4 links without validating the video password.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying the videos_id parameter for a target password-protected video
  2. Directly calling the get_api_video_file or get_api_video API endpoints with the video ID
  3. Receiving full playback sources including direct MP4 URLs and HLS manifests without password verification

The security patch adds video password verification to the API code path:

php
         global $global;
         $obj = $this->startResponseObject($parameters);
         $obj->videos_id = $parameters['videos_id'];
+        $video = new Video('', '', $obj->videos_id);
         if (!self::isAPISecretValid()) {
             if (!User::canWatchVideoWithAds($obj->videos_id)) {
                 return new ApiObject("You cannot watch this video");
             }
+            $storedPassword = $video->getVideo_password();
+            if (!empty($storedPassword) && !Video::verifyVideoPassword((string)($parameters['video_password'] ?? ''), $storedPassword)) {
+                return new ApiObject("Video password required");
+            }
         }
-        $video = new Video('', '', $obj->videos_id);
         $obj->filename = $video->getFilename();
         $obj->duration_in_seconds = $video->getDuration_in_seconds();
         $obj->title = $video->getTitle();

Source: GitHub Code Commit

Detection Methods for CVE-2026-34369

Indicators of Compromise

  • Unusual API call patterns to get_api_video_file or get_api_video endpoints without corresponding web session activity
  • Direct access to password-protected video content from IP addresses that never authenticated via the web interface
  • High volume of API requests targeting multiple video IDs in rapid succession
  • API access logs showing requests for protected videos without the video_password parameter

Detection Strategies

  • Monitor API endpoint access logs for calls to get_api_video_file and get_api_video that don't originate from authenticated web sessions
  • Implement anomaly detection for bulk video ID enumeration attempts across API endpoints
  • Correlate API access logs with web authentication logs to identify discrepancies
  • Deploy web application firewall rules to flag suspicious API request patterns targeting video endpoints

Monitoring Recommendations

  • Enable verbose logging for all API endpoint access in AVideo
  • Set up alerts for API calls accessing password-protected videos without the password parameter
  • Monitor for unusual download patterns of video content that bypasses normal playback metrics
  • Review API access logs regularly for unauthorized access to protected content

How to Mitigate CVE-2026-34369

Immediate Actions Required

  • Update WWBN AVideo to a version containing commit be344206f2f461c034ad2f1c5d8212dd8a52b8c7
  • Audit access logs for potential exploitation of password-protected videos
  • Review all password-protected video content to assess potential exposure
  • Notify content owners if unauthorized access to their protected videos is detected

Patch Information

The vulnerability is fixed in commit be344206f2f461c034ad2f1c5d8212dd8a52b8c7. This patch implements video password verification within the API code path by calling Video::verifyVideoPassword() before returning video playback sources. Organizations should update to a version containing this fix immediately. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Implement API rate limiting to slow enumeration attacks until patching is complete
  • Deploy a web application firewall (WAF) to block or monitor direct API calls to affected endpoints
  • Temporarily disable API access to video endpoints if the feature is not critical to operations
  • Consider moving sensitive password-protected videos to a separate, restricted environment until the patch is applied
bash
# Example: Block direct API access to vulnerable endpoints using Apache mod_rewrite
# Add to .htaccess or Apache configuration
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/plugin/API/.*$
RewriteCond %{HTTP_REFERER} !^https://your-domain\.com [NC]
RewriteRule ^.*$ - [F,L]

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

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.06%

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

  • 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