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
    • 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-34364

CVE-2026-34364: WWBN AVideo Auth Bypass Vulnerability

CVE-2026-34364 is an authentication bypass flaw in WWBN AVideo that exposes restricted categories due to improper access control enforcement. This post covers the technical details, affected versions, and mitigation.

Published: April 3, 2026

CVE-2026-34364 Overview

A broken access control vulnerability exists in WWBN AVideo, an open source video platform. In versions up to and including 26.0, the categories.json.php endpoint fails to enforce user group-based access controls on categories. This authorization bypass allows unauthenticated attackers to access restricted category information that should only be visible to specific user groups.

The vulnerability manifests in two exploitation paths: in the default request path (without the ?user= parameter), user group filtering is entirely skipped, exposing all non-private categories including those restricted to specific user groups. When the ?user= parameter is supplied, a type confusion bug causes the filter to incorrectly use the admin user's (user_id=1) group memberships instead of the current user's memberships, rendering the access control filter completely ineffective.

Critical Impact

Unauthorized disclosure of restricted video categories and content metadata to unauthenticated users, bypassing intended access control restrictions.

Affected Products

  • WWBN AVideo versions up to and including 26.0

Discovery Timeline

  • 2026-03-27 - CVE-2026-34364 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2026-34364

Vulnerability Analysis

This vulnerability represents a classic authorization bypass (CWE-863) combined with a type confusion bug affecting the category listing API. The root cause lies in the categories.json.php endpoint which serves category data without properly validating user permissions against user group restrictions.

The vulnerable code path has two distinct failure modes. First, when no ?user= parameter is provided in the request, the $sameUserGroupAsMe variable is set to false, which causes the Category::getAllCategories() function to skip user group filtering entirely. This exposes all non-private categories regardless of their access restrictions.

Second, when the ?user= parameter is supplied, the code sets $sameUserGroupAsMe to true (a boolean value). However, the downstream filtering logic appears to interpret this boolean as a user ID, causing a type confusion where the value 1 (boolean true coerced to integer) references the admin user's group memberships instead of the actual requesting user's memberships.

Root Cause

The vulnerability stems from improper implementation of user group-based access controls in the category API endpoint. The $sameUserGroupAsMe variable was incorrectly handled as a boolean flag rather than a user identifier, and the code path that should have applied user group filtering was bypassed in the default case.

Attack Vector

An attacker can exploit this vulnerability remotely over the network without authentication. By sending HTTP requests to the categories.json.php endpoint, attackers can enumerate and access restricted category information:

  1. Default path exploitation: Simply request /objects/categories.json.php without parameters to receive all non-private categories, bypassing user group restrictions
  2. Parameter-based exploitation: Supply any ?user= parameter value to trigger the type confusion, causing the filter to check against admin user permissions instead of the actual requester

The security patch addresses this by properly retrieving and using the current logged-in user's ID for filtering:

php
$_REQUEST['current'] = getCurrentPage();

$onlyWithVideos = false;
-$sameUserGroupAsMe = false;
if(!empty($_GET['user'])){
    $onlyWithVideos = true;
-    $sameUserGroupAsMe = true;
}
+// Always apply user-group filtering using the logged-in user's real ID.
+// Guests get -1 so getUserGroups returns [], leaving only unrestricted categories visible.
+$currentUserId = User::getId();
+$sameUserGroupAsMe = !empty($currentUserId) ? intval($currentUserId) : -1;

$categories = Category::getAllCategories(true, $onlyWithVideos, false, $sameUserGroupAsMe);
-$total = Category::getTotalCategories(true, $onlyWithVideos);
+$total = Category::getTotalCategories(true, $onlyWithVideos, false, $sameUserGroupAsMe);
//$breaks = array('<br />', '<br>', '<br/>');
foreach ($categories as $key => $value) {
    $categories[$key]['iconHtml'] = "<span class='$value[iconClass]'></span>";

Source: GitHub Commit

Detection Methods for CVE-2026-34364

Indicators of Compromise

  • Unusual access patterns to /objects/categories.json.php from unauthenticated users or unexpected IP addresses
  • HTTP requests to the categories API endpoint with varying ?user= parameters, potentially indicating enumeration attempts
  • Increased volume of API requests to category listing endpoints without corresponding authenticated sessions

Detection Strategies

  • Monitor web server access logs for requests to categories.json.php from unauthenticated sessions
  • Implement anomaly detection for category API access patterns that deviate from normal user behavior
  • Deploy Web Application Firewall (WAF) rules to alert on suspicious parameter manipulation in category API requests
  • Review application logs for category data access by users who should not have visibility to restricted categories

Monitoring Recommendations

  • Enable detailed logging for the category API endpoint including request parameters and session context
  • Set up alerts for high-frequency requests to categories.json.php from single IP addresses
  • Audit category access logs periodically to identify any unauthorized data exposure

How to Mitigate CVE-2026-34364

Immediate Actions Required

  • Update WWBN AVideo to a version containing commit 6e8a673eed07be5628d0b60fbfabd171f3ce74c9 or later
  • Review category access logs to determine if the vulnerability may have been exploited
  • Audit user group configurations and restricted category assignments for potential data exposure
  • Consider temporarily restricting access to the categories.json.php endpoint until patching is complete

Patch Information

The vulnerability has been fixed in commit 6e8a673eed07be5628d0b60fbfabd171f3ce74c9. The fix modifies the categories.json.php file to always apply user group filtering using the authenticated user's actual ID. For guest users (unauthenticated), the user ID is set to -1, which causes getUserGroups() to return an empty array, ensuring only unrestricted categories are visible.

The getTotalCategories() function was also updated to accept and apply the same user group filtering parameter for consistency.

For additional details, refer to the GitHub Security Advisory GHSA-73gr-r64q-7jh4.

Workarounds

  • Implement network-level access controls to restrict access to the category API endpoint from untrusted networks
  • Configure a reverse proxy or WAF to require authentication for all requests to /objects/categories.json.php
  • Temporarily disable the category listing API if not critical to operations until the patch can be applied
bash
# Example: Block unauthenticated access to categories API via nginx
location /objects/categories.json.php {
    # Require valid session cookie or deny access
    if ($http_cookie !~* "PHPSESSID=") {
        return 403;
    }
    proxy_pass http://avideo_backend;
}

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.01%

  • 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-863
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-73gr-r64q-7jh4
  • 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