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

CVE-2026-34247: WWBN AVideo Auth Bypass Vulnerability

CVE-2026-34247 is an authentication bypass flaw in WWBN AVideo that allows authenticated users to overwrite poster images and expose broadcast keys. This article covers technical details, affected versions, and mitigation.

Published: April 3, 2026

CVE-2026-34247 Overview

WWBN AVideo is an open source video platform that contains a broken access control vulnerability in versions up to and including 26.0. The plugin/Live/uploadPoster.php endpoint allows any authenticated user to overwrite the poster image for any scheduled live stream by supplying an arbitrary live_schedule_id. The endpoint only checks User::isLogged() but never verifies that the authenticated user owns the targeted schedule. After overwriting the poster, the endpoint broadcasts a socketLiveOFFCallback notification containing the victim's broadcast key and user ID to all connected WebSocket clients.

Critical Impact

Authenticated attackers can manipulate other users' live stream poster images and leak sensitive broadcast keys and user IDs through WebSocket notifications.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • Installations using the Live plugin with uploadPoster.php endpoint

Discovery Timeline

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

Technical Details for CVE-2026-34247

Vulnerability Analysis

This vulnerability represents a classic case of broken access control (CWE-862) where the application fails to perform adequate authorization checks. The affected endpoint plugin/Live/uploadPoster.php implements authentication verification through User::isLogged() but completely omits ownership validation for the targeted live schedule resource.

The vulnerability enables horizontal privilege escalation, allowing any authenticated user to modify resources belonging to other users. The secondary impact involves information disclosure through WebSocket broadcast, where the socketLiveOFFCallback notification inadvertently exposes the victim's broadcast key and user ID to all connected clients.

Root Cause

The root cause is missing authorization logic in the uploadPoster.php endpoint. The code checks whether a user is logged in but does not validate whether the authenticated user has permission to modify the specific live_schedule_id being targeted. This is a common Insecure Direct Object Reference (IDOR) pattern where user-supplied identifiers are trusted without ownership verification.

Attack Vector

The attack is network-based and requires low privileges (any authenticated user account). An attacker can:

  1. Obtain a valid session by logging into the AVideo platform
  2. Identify target live_schedule_id values belonging to other users
  3. Send crafted requests to plugin/Live/uploadPoster.php with arbitrary schedule IDs
  4. Overwrite victim's poster images and intercept leaked broadcast keys via WebSocket

The following patch demonstrates the authorization fix implemented in commit 5fcb3bdf59f26d65e203cfbc8a685356ba300b60:

php
     die(json_encode($obj));
 }
 
+if (!empty($live_schedule_id)) {
+    $ls = new Live_schedule($live_schedule_id);
+    if (!User::isAdmin() && $ls->getUsers_id() != User::getId()) {
+        $obj->msg = 'You cant edit this file';
+        die(json_encode($obj));
+    }
+}
+
 $live = AVideoPlugin::loadPluginIfEnabled("Live");
 
 if (empty($live)) {

Source: GitHub Commit Details

Detection Methods for CVE-2026-34247

Indicators of Compromise

  • Unusual HTTP POST requests to plugin/Live/uploadPoster.php with live_schedule_id parameters not owned by the requesting user
  • Multiple poster upload requests from a single user targeting different schedule IDs
  • WebSocket socketLiveOFFCallback events containing broadcast keys being received by unexpected clients
  • Log entries showing authenticated users accessing or modifying live schedules they do not own

Detection Strategies

  • Implement web application firewall (WAF) rules to monitor requests to the uploadPoster.php endpoint
  • Analyze application logs for patterns of users accessing multiple different live_schedule_id values
  • Monitor WebSocket traffic for socketLiveOFFCallback messages and correlate with authorized recipients
  • Deploy integrity monitoring on poster image files to detect unauthorized modifications

Monitoring Recommendations

  • Enable detailed access logging for the Live plugin endpoints
  • Set up alerts for high-frequency requests to uploadPoster.php from single user sessions
  • Monitor for broadcast key exposure in WebSocket communications
  • Implement user behavior analytics to identify horizontal access attempts across live schedules

How to Mitigate CVE-2026-34247

Immediate Actions Required

  • Update WWBN AVideo to a version that includes commit 5fcb3bdf59f26d65e203cfbc8a685356ba300b60
  • Review logs for any historical exploitation attempts targeting the uploadPoster.php endpoint
  • Reset broadcast keys for any live schedules that may have been compromised
  • Audit user accounts for suspicious activity patterns

Patch Information

The vulnerability is fixed in commit 5fcb3bdf59f26d65e203cfbc8a685356ba300b60. The patch adds proper authorization checks that verify the authenticated user either owns the targeted live schedule or has administrator privileges before allowing poster modifications. Organizations should upgrade to a version containing this fix.

For detailed patch information, see the GitHub Security Advisory GHSA-g3hj-mf85-679g.

Workarounds

  • Restrict access to the plugin/Live/uploadPoster.php endpoint via web server configuration until patching is complete
  • Implement additional authentication layers or IP-based access controls for the Live plugin
  • Temporarily disable the Live plugin if live streaming functionality is not critical to operations
  • Deploy a reverse proxy rule to validate ownership of live_schedule_id before requests reach the application
bash
# Apache configuration to restrict access to uploadPoster.php
<Location /plugin/Live/uploadPoster.php>
    # Temporarily restrict access until patch is applied
    Require ip 10.0.0.0/8
    Require ip 192.168.0.0/16
</Location>

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

  • EPSS Probability0.01%

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

  • GitHub Security Advisory GHSA-g3hj-mf85-679g
  • 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