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

CVE-2026-33867: Wwbn Avideo Information Disclosure Issue

CVE-2026-33867 is an information disclosure flaw in Wwbn Avideo where video passwords are stored in plaintext. Attackers with database access can retrieve all passwords. This article covers technical details, impact, and fixes.

Published: April 2, 2026

CVE-2026-33867 Overview

WWBN AVideo is an open source video platform that allows content owners to password-protect individual videos. A critical cleartext storage vulnerability exists in versions up to and including 26.0 where video passwords are stored in the database without any cryptographic protection — no hashing, salting, or encryption is applied. If an attacker gains read access to the database through SQL injection, a database backup, or misconfigured access controls, they can obtain all video passwords in cleartext, potentially exposing protected content across the entire platform.

Critical Impact

Attackers with database access can retrieve all video passwords in plaintext, enabling unauthorized access to password-protected video content across the entire AVideo installation.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • All AVideo installations using password-protected video functionality
  • Self-hosted AVideo deployments with database exposure risks

Discovery Timeline

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

Technical Details for CVE-2026-33867

Vulnerability Analysis

This vulnerability falls under CWE-312 (Cleartext Storage of Sensitive Information). The AVideo platform's video password protection feature stores credentials directly in the database video_password column without any cryptographic transformation. This architectural flaw means that any database compromise immediately exposes all protected content credentials.

The vulnerability requires an attacker to first gain database read access, which can occur through various attack vectors including SQL injection vulnerabilities elsewhere in the application, compromised database backups, misconfigured database access controls, or insider threats with database access. Once database access is obtained, the attacker can directly query the videos table to extract all video passwords and use them to access protected content.

Root Cause

The root cause is the storage of sensitive authentication data (video passwords) in plaintext within the database. The original implementation used a VARCHAR(45) column that stored raw password strings without applying industry-standard password protection mechanisms such as bcrypt hashing with proper salting.

Attack Vector

The attack is network-accessible and requires an attacker to first compromise database access through a secondary vulnerability or misconfiguration. The attacker can then execute a simple SQL query to retrieve all video passwords:

sql
-- Attacker query after gaining database access
SELECT id, title, video_password FROM videos WHERE video_password IS NOT NULL;

The patch implemented bcrypt password hashing and expanded the database column to accommodate the longer hash values:

text
-- Database schema change from patch
-  `video_password` VARCHAR(45) NULL DEFAULT NULL,
+  `video_password` VARCHAR(255) NULL DEFAULT NULL,

Source: GitHub Commit Details

The version update in the patch indicates the security improvements:

php
-$installationVersion = "28.0";
+$installationVersion = "29.0";

require_once '../objects/functionsSecurity.php';

Source: GitHub Commit Details

Detection Methods for CVE-2026-33867

Indicators of Compromise

  • Unusual database queries targeting the videos table, particularly queries selecting the video_password column
  • Evidence of SQL injection attempts in application logs that may indicate attempts to extract password data
  • Unauthorized access to password-protected videos without corresponding authentication events
  • Database backup files accessed or exfiltrated from backup storage locations

Detection Strategies

  • Implement database activity monitoring to detect bulk queries against the videos table selecting password columns
  • Monitor for SQL injection attack patterns in web application firewall (WAF) logs and application logs
  • Enable audit logging on database servers to track all SELECT queries involving sensitive columns
  • Review access logs for password-protected videos to identify access patterns that bypass normal authentication flows

Monitoring Recommendations

  • Deploy SentinelOne Singularity to monitor for suspicious database access patterns and potential SQL injection exploitation
  • Configure database query logging and alert on queries extracting multiple video_password values
  • Implement file integrity monitoring on database backup storage to detect unauthorized access
  • Establish baseline access patterns for password-protected content and alert on anomalies

How to Mitigate CVE-2026-33867

Immediate Actions Required

  • Update WWBN AVideo to version 29.0 or later which includes the bcrypt password hashing fix
  • Review database access controls and ensure the database server is not exposed to untrusted networks
  • Audit existing database backups and ensure they are encrypted and access-controlled
  • After upgrading, require all video content owners to reset their video passwords to ensure they are stored with proper hashing

Patch Information

The vulnerability has been addressed in commit f2d68d2adbf73588ea61be2b781d93120a819e36. This patch implements bcrypt password hashing for video passwords and expands the database column from VARCHAR(45) to VARCHAR(255) to accommodate the longer hash values. Users should update to AVideo version 29.0 or later. For detailed patch information, see the GitHub Security Advisory GHSA-363v-5rh8-23wg.

Workarounds

  • Restrict database access to only trusted application servers using firewall rules and database authentication
  • If unable to upgrade immediately, consider disabling the video password protection feature until the patch can be applied
  • Implement network segmentation to isolate the database server from direct network access
  • Enable encryption at rest for the database to provide an additional layer of protection for stored data
bash
# Configuration example - Restrict MySQL access to localhost only
# Edit /etc/mysql/mysql.conf.d/mysqld.cnf
bind-address = 127.0.0.1

# Ensure database backups are encrypted
mysqldump -u root -p avideo_db | gpg --encrypt -r admin@example.com > avideo_backup.sql.gpg

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechWwbn Avideo

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-312
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-363v-5rh8-23wg
  • Related CVEs
  • CVE-2026-34395: Wwbn Avideo Information Disclosure Flaw

  • CVE-2026-33764: Wwbn Avideo Information Disclosure Flaw

  • CVE-2026-33761: WWBN AVideo Information Disclosure Flaw

  • CVE-2026-33685: Wwbn Avideo Information Disclosure Flaw
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