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

CVE-2026-29093: WWBN AVideo Auth Bypass Vulnerability

CVE-2026-29093 is an authentication bypass flaw in WWBN AVideo that exposes memcached sessions without authentication, allowing attackers to hijack sessions and impersonate admins. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 13, 2026

CVE-2026-29093 Overview

WWBN AVideo is an open source video platform that, prior to version 24.0, contains a critical authentication bypass vulnerability in its default Docker deployment configuration. The official docker-compose.yml publishes the memcached service on host port 11211 (0.0.0.0:11211) with no authentication, while the Dockerfile configures PHP to store all user sessions in that memcached instance. An attacker who can reach port 11211 can read, modify, or flush session data — enabling session hijacking, admin impersonation, and mass session destruction without any application-level authentication.

Critical Impact

Unauthenticated remote attackers can hijack user sessions, impersonate administrators, and cause mass session destruction by accessing the exposed memcached service on port 11211.

Affected Products

  • WWBN AVideo versions prior to 24.0
  • AVideo Docker deployments using the default docker-compose.yml configuration
  • Any deployment exposing memcached on port 11211 without network restrictions

Discovery Timeline

  • 2026-03-06 - CVE CVE-2026-29093 published to NVD
  • 2026-03-09 - Last updated in NVD database

Technical Details for CVE-2026-29093

Vulnerability Analysis

This vulnerability represents a classic insecure default configuration issue (CWE-287: Improper Authentication) that creates a direct path to session hijacking. The root problem lies in the intersection of two design decisions: exposing memcached on all network interfaces without authentication, and using that same memcached instance as the PHP session storage backend.

Memcached, by design, does not implement authentication — it was intended for trusted internal networks. When exposed to untrusted networks via the 0.0.0.0:11211 binding in the default Docker Compose configuration, any network-accessible attacker gains full read/write access to the session store. Since PHP sessions contain authentication state, session tokens, and user identity information, this exposure enables complete authentication bypass.

Root Cause

The vulnerability stems from the default docker-compose.yml configuration binding memcached to all network interfaces (0.0.0.0:11211) without any access controls. Combined with PHP's session handler configuration that stores all user sessions in memcached, this creates an unauthenticated pathway to the session store. Memcached's protocol lacks built-in authentication mechanisms, making network-level isolation the only protection — which the default configuration fails to provide.

Attack Vector

The attack vector is network-based. An attacker with network access to port 11211 can connect directly to the memcached service using standard memcached clients or tools like telnet or netcat. From there, the attacker can:

  1. Enumerate active session keys to identify logged-in users
  2. Read session data to obtain session tokens and user credentials
  3. Modify session data to escalate privileges or impersonate administrators
  4. Flush all sessions to cause a denial-of-service condition affecting all authenticated users

The memcached protocol supports simple text commands such as stats items, stats cachedump, get, set, and flush_all that facilitate these attacks without any authentication challenge.

Detection Methods for CVE-2026-29093

Indicators of Compromise

  • Unexpected connections to port 11211 from external IP addresses or untrusted network segments
  • Unusual memcached command patterns including stats cachedump, get, or flush_all from non-application sources
  • Mass session invalidations or unexpected user logouts across the platform
  • Administrative actions performed by accounts whose legitimate owners were not active

Detection Strategies

  • Monitor network traffic to port 11211 for connections originating outside the expected container network or localhost
  • Implement intrusion detection rules to alert on memcached protocol commands from unauthorized sources
  • Audit Docker Compose configurations for services bound to 0.0.0.0 that should be internal-only
  • Review authentication and session logs for anomalous session creation or privilege escalation events

Monitoring Recommendations

  • Deploy network segmentation monitoring to detect cross-boundary access to memcached services
  • Implement real-time alerting on memcached flush_all commands which may indicate active exploitation
  • Monitor for unusual patterns in session creation and destruction that could indicate session manipulation
  • Establish baseline memcached access patterns to identify deviations indicative of unauthorized access

How to Mitigate CVE-2026-29093

Immediate Actions Required

  • Upgrade WWBN AVideo to version 24.0 or later which contains the security fix
  • Restrict memcached network binding to localhost (127.0.0.1:11211) or the internal Docker network only
  • Implement firewall rules to block external access to port 11211
  • Review active sessions and consider invalidating all sessions if compromise is suspected

Patch Information

WWBN has released version 24.0 which addresses this vulnerability. The patch modifies the default Docker Compose configuration to prevent the memcached service from being exposed on external network interfaces. Organizations should upgrade to version 24.0 or later immediately. For detailed information, refer to the GitHub AVideo Release 24.0 and the GitHub Security Advisory GHSA-xxpw-32hf-q8v9.

Workarounds

  • Modify docker-compose.yml to bind memcached to 127.0.0.1:11211 instead of 0.0.0.0:11211
  • Remove the port mapping entirely if memcached only needs to be accessible within the Docker network
  • Deploy network firewall rules to restrict access to port 11211 to only trusted internal addresses
  • Consider placing memcached behind a VPN or private network segment inaccessible from the public internet
bash
# Configuration example - Secure docker-compose.yml memcached configuration
# Change the memcached port binding from exposed to internal-only
# Original (vulnerable): ports: - "11211:11211"
# Secure option 1: Bind to localhost only
ports:
  - "127.0.0.1:11211:11211"

# Secure option 2: Remove port mapping entirely (recommended)
# Comment out or remove the ports section for memcached
# memcached will only be accessible via Docker internal network

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.1

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-287
  • Technical References
  • GitHub AVideo Release 24.0

  • GitHub Security Advisory GHSA-xxpw-32hf-q8v9
  • Related CVEs
  • CVE-2026-40935: WWBN AVideo Auth Bypass Vulnerability

  • CVE-2026-39366: AVideo PayPal Auth Bypass Vulnerability

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

  • CVE-2026-34737: 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