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

CVE-2026-33761: WWBN AVideo Information Disclosure Flaw

CVE-2026-33761 is an information disclosure vulnerability in WWBN AVideo that allows unauthenticated attackers to access scheduled tasks and admin email data. This article covers technical details, affected versions, and patches.

Published: April 3, 2026

CVE-2026-33761 Overview

CVE-2026-33761 is an information disclosure vulnerability affecting WWBN AVideo, an open source video platform. The vulnerability exists in the Scheduler plugin where three list.json.php endpoints lack proper authentication checks. While other endpoints in the same plugin directories (add.json.php, delete.json.php, index.php) properly require User::isAdmin() authorization, these listing endpoints can be accessed without any authentication.

Critical Impact

An unauthenticated attacker can retrieve all scheduled tasks including internal callback URLs and parameters, admin-composed email messages, and user-to-email targeting mappings by sending simple GET requests.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • AVideo Scheduler Plugin (Email_to_user, Emails_messages, and related list.json.php endpoints)
  • Self-hosted AVideo installations with the Scheduler plugin enabled

Discovery Timeline

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

Technical Details for CVE-2026-33761

Vulnerability Analysis

This vulnerability represents a classic broken access control flaw (CWE-200: Exposure of Sensitive Information) in the AVideo Scheduler plugin. The root issue stems from inconsistent authentication enforcement across plugin endpoints. While administrative operations like adding and deleting scheduled tasks properly verify that the requesting user has admin privileges via User::isAdmin(), the corresponding list endpoints that retrieve sensitive data were left unprotected.

The vulnerable endpoints expose three categories of sensitive information: scheduled task configurations containing internal callback URLs and operational parameters, email message content composed by administrators, and user-to-email mapping data that reveals the relationship between platform users and their email addresses. This information leakage could enable attackers to understand internal system architecture, discover additional attack surfaces, or conduct targeted social engineering attacks.

Root Cause

The vulnerability originates from missing authorization checks in the list.json.php files within the Scheduler plugin's View directories. Specifically, the files at plugin/Scheduler/View/Email_to_user/list.json.php and plugin/Scheduler/View/Emails_messages/list.json.php directly query and return all database records without first validating that the requesting user has administrative privileges.

Attack Vector

Exploitation requires no authentication and can be performed remotely over the network. An attacker simply needs to send HTTP GET requests to the vulnerable endpoints:

  • /plugin/Scheduler/View/Email_to_user/list.json.php
  • /plugin/Scheduler/View/Emails_messages/list.json.php

The endpoints respond with JSON data containing all stored records, including sensitive scheduling information, email content, and user mappings.

php
// Vulnerable code pattern (before patch)
require_once $global['systemRootPath'] . 'plugin/Scheduler/Objects/Email_to_user.php';
header('Content-Type: application/json');

// Missing: Authentication check
$rows = Email_to_user::getAll();
$total = Email_to_user::getTotal();

The fix adds the required User::isAdmin() check:

php
// Patched code (commit 83390ab1fa8dca2de3f8fa76116a126428405431)
require_once $global['systemRootPath'] . 'plugin/Scheduler/Objects/Email_to_user.php';
header('Content-Type: application/json');

if (!User::isAdmin()) {
    http_response_code(403);
    die(json_encode(['error' => true, 'msg' => 'Not authorized']));
}

$rows = Email_to_user::getAll();
$total = Email_to_user::getTotal();

Source: GitHub Commit

Detection Methods for CVE-2026-33761

Indicators of Compromise

  • Unexpected HTTP 200 responses to unauthenticated requests against /plugin/Scheduler/View/*/list.json.php endpoints
  • Anomalous access patterns to Scheduler plugin JSON endpoints from external or unauthorized IP addresses
  • Web server logs showing bulk requests to list.json.php files without associated session cookies or authentication headers
  • Evidence of data exfiltration attempts in outbound network traffic following access to vulnerable endpoints

Detection Strategies

  • Configure web application firewall (WAF) rules to monitor and alert on unauthenticated access attempts to the Scheduler plugin's JSON endpoints
  • Implement server-side access logging for all requests to /plugin/Scheduler/View/ paths and correlate with authentication status
  • Deploy intrusion detection signatures that identify JSON responses containing sensitive fields like callback_url, email_body, or user mapping data in response to unauthenticated requests
  • Review existing access logs for historical exploitation attempts targeting the vulnerable endpoints

Monitoring Recommendations

  • Enable detailed request logging for the AVideo application with authentication context to identify unauthorized access patterns
  • Set up real-time alerting for successful JSON responses (HTTP 200) to Scheduler plugin list endpoints without valid admin session tokens
  • Monitor for reconnaissance activity including sequential enumeration of plugin endpoints from single source addresses
  • Correlate Scheduler endpoint access with user authentication events to identify discrepancies

How to Mitigate CVE-2026-33761

Immediate Actions Required

  • Update WWBN AVideo to a version containing commit 83390ab1fa8dca2de3f8fa76116a126428405431 or later
  • If immediate patching is not possible, restrict access to the Scheduler plugin endpoints at the web server or reverse proxy level
  • Audit access logs for evidence of prior exploitation and assess potential data exposure
  • Review and rotate any sensitive callback URLs or API keys that may have been exposed through the vulnerable endpoints

Patch Information

WWBN has released a security patch in commit 83390ab1fa8dca2de3f8fa76116a126428405431 that adds the missing User::isAdmin() authorization checks to all three vulnerable list.json.php endpoints. The patch ensures consistency with the existing security model where only authenticated administrators can access Scheduler plugin functionality. For detailed patch information, refer to the GitHub Security Advisory GHSA-j724-5c6c-68g5.

Workarounds

  • Implement web server access controls to restrict access to /plugin/Scheduler/View/*/list.json.php endpoints to authenticated administrators only
  • Disable the Scheduler plugin entirely if the scheduling functionality is not required for your deployment
  • Deploy a reverse proxy rule that blocks unauthenticated requests to the vulnerable endpoint paths
  • Apply network-level segmentation to limit access to the AVideo administrative interface to trusted networks
bash
# Apache configuration example - block unauthenticated access to vulnerable endpoints
<LocationMatch "^/plugin/Scheduler/View/.*/list\.json\.php$">
    # Require authentication or restrict to trusted IPs
    Require ip 10.0.0.0/8 192.168.0.0/16
</LocationMatch>

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

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.07%

  • 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-200
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-j724-5c6c-68g5
  • Related CVEs
  • CVE-2026-34395: Wwbn Avideo Information Disclosure Flaw

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

  • CVE-2026-33867: Wwbn Avideo Information Disclosure Issue

  • 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