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

CVE-2026-40926: Wwbn Avideo CSRF Vulnerability

CVE-2026-40926 is a CSRF flaw in Wwbn Avideo that allows attackers to manipulate admin actions via malicious pages. This post covers the technical details, affected versions, impact, and mitigation steps.

Published: April 23, 2026

CVE-2026-40926 Overview

CVE-2026-40926 is a Cross-Site Request Forgery (CSRF) vulnerability affecting WWBN AVideo, an open source video platform. In versions 29.0 and prior, three admin-only JSON endpoints — objects/categoryAddNew.json.php, objects/categoryDelete.json.php, and objects/pluginRunUpdateScript.json.php — enforce only a role check (Category::canCreateCategory() / User::isAdmin()) and perform state-changing actions against the database without calling isGlobalTokenValid() or forbidIfIsUntrustedRequest().

Peer endpoints in the same directory (pluginSwitch.json.php, pluginRunDatabaseScript.json.php) do enforce the CSRF token, so the missing checks are an omission rather than a design choice.

Critical Impact

An attacker who lures a logged-in admin to a malicious page can create, update, or delete categories and force execution of any installed plugin's updateScript() method in the admin's session.

Affected Products

  • WWBN AVideo versions 29.0 and prior

Discovery Timeline

  • 2026-04-21 - CVE CVE-2026-40926 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-40926

Vulnerability Analysis

The vulnerability stems from inconsistent CSRF protection implementation across admin-only JSON endpoints in the AVideo platform. While some endpoints properly validate requests using isGlobalTokenValid() or forbidIfIsUntrustedRequest() functions, three critical endpoints were left unprotected:

  1. objects/categoryAddNew.json.php - Allows category creation
  2. objects/categoryDelete.json.php - Allows category deletion
  3. objects/pluginRunUpdateScript.json.php - Allows plugin update script execution

These endpoints only verify that the requesting user has appropriate administrative privileges but fail to confirm that the request originated from a legitimate source within the application. This allows attackers to craft malicious web pages that submit forged requests on behalf of authenticated administrators who visit those pages.

Root Cause

The root cause is the inconsistent application of CSRF protection mechanisms across the AVideo codebase. The vulnerable endpoints implement role-based access control checks (Category::canCreateCategory() and User::isAdmin()) but omit the critical CSRF token validation that peer endpoints in the same directory implement. This indicates a development oversight rather than an intentional design decision, as similar endpoints do properly enforce CSRF protections.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker must craft a malicious webpage containing hidden forms or JavaScript that target the vulnerable AVideo endpoints. When an authenticated administrator with an active session visits the attacker-controlled page, the malicious requests are automatically submitted to the AVideo server using the admin's credentials and session cookies. The server, lacking CSRF token validation, processes these requests as legitimate administrative actions.

The following code snippets show the security patch that adds the missing forbidIfIsUntrustedRequest() validation:

Patch for objects/categoryAddNew.json.php:

php
     $obj->msg = __("Permission denied");
     die(json_encode($obj));
 }
+forbidIfIsUntrustedRequest('categoryAddNew');
 
 $objCat = new Category(intval(@$_POST['id']));
 $objCat->setName($_POST['name']);

Source: GitHub AVideo Commit

Patch for objects/categoryDelete.json.php:

php
 if (!Category::canCreateCategory()) {
     die('{"error":"' . __("Permission denied") . '"}');
 }
+forbidIfIsUntrustedRequest('categoryDelete');
 require_once 'category.php';
 $obj = new Category($_POST['id']);

Source: GitHub AVideo Commit

Detection Methods for CVE-2026-40926

Indicators of Compromise

  • Unexpected category creation, modification, or deletion in AVideo audit logs without corresponding admin activity
  • Plugin update scripts executed at unusual times or without admin initiation
  • HTTP POST requests to vulnerable endpoints (categoryAddNew.json.php, categoryDelete.json.php, pluginRunUpdateScript.json.php) with Referer headers pointing to external domains

Detection Strategies

  • Monitor web server access logs for POST requests to the affected endpoints with external or missing Referer headers
  • Implement web application firewall (WAF) rules to detect and block cross-origin POST requests to administrative JSON endpoints
  • Review AVideo application logs for category management and plugin script execution activities that don't correlate with known admin sessions

Monitoring Recommendations

  • Enable detailed logging for all administrative actions within AVideo, including category management and plugin operations
  • Configure alerting for administrative endpoint access from unexpected IP addresses or user agents
  • Implement real-time monitoring for changes to critical AVideo configurations and category structures

How to Mitigate CVE-2026-40926

Immediate Actions Required

  • Upgrade AVideo to a version containing commit ee5615153c40628ab3ec6fe04962d1f92e67d3e2 or later
  • Review recent category changes and plugin script executions for unauthorized modifications
  • Consider restricting administrative access to trusted IP addresses until patching is complete
  • Educate administrators about the risks of visiting untrusted websites while logged into AVideo

Patch Information

The vulnerability has been addressed in commit ee5615153c40628ab3ec6fe04962d1f92e67d3e2. The fix adds forbidIfIsUntrustedRequest() validation calls to the three affected endpoints, bringing them in line with other administrative endpoints in the codebase.

For detailed patch information, refer to:

  • GitHub AVideo Commit
  • GitHub Security Advisory GHSA-ffw8-fwxp-h64w

Workarounds

  • Implement web application firewall rules to block POST requests to the affected endpoints from external referrers
  • Restrict access to the AVideo admin panel using IP allowlisting or VPN requirements
  • Instruct administrators to use dedicated browser profiles or private browsing sessions when accessing the AVideo admin interface
bash
# Example nginx configuration to restrict admin endpoint access
location ~ ^/objects/(categoryAddNew|categoryDelete|pluginRunUpdateScript)\.json\.php$ {
    # Allow only from trusted internal network
    allow 10.0.0.0/8;
    allow 192.168.0.0/16;
    deny all;
    
    # Pass to PHP-FPM
    include fastcgi_params;
    fastcgi_pass unix:/var/run/php-fpm.sock;
}

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechWwbn Avideo

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityLow
  • CWE References
  • CWE-352
  • Vendor Resources
  • GitHub AVideo Commit

  • GitHub Security Advisory GHSA-ffw8-fwxp-h64w
  • Related CVEs
  • CVE-2026-41056: WWBN AVideo CSRF Vulnerability

  • CVE-2026-40928: Wwbn Avideo CSRF Vulnerability

  • CVE-2026-40929: WWBN AVideo CSRF Vulnerability

  • CVE-2026-35181: WWBN AVideo CSRF 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