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

CVE-2026-40929: WWBN AVideo CSRF Vulnerability

CVE-2026-40929 is a CSRF flaw in WWBN AVideo that allows attackers to delete comments without authorization by exploiting missing CSRF validation. This post covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-40929 Overview

CVE-2026-40929 is a Cross-Site Request Forgery (CSRF) vulnerability in WWBN AVideo, an open source video platform. The vulnerability exists in versions 29.0 and prior where the objects/commentDelete.json.php endpoint performs state-mutating operations (comment deletion) without implementing proper CSRF validation mechanisms.

The vulnerable endpoint fails to call forbidIfIsUntrustedRequest(), does not verify a CSRF/global token, and does not check Origin or Referer headers. This issue is compounded by the fact that AVideo intentionally configures session.cookie_samesite=None to support cross-origin embed players, which allows cross-site requests from attacker-controlled pages to automatically carry the victim's PHPSESSID session cookie.

Critical Impact

Any authenticated user with comment deletion privileges (site moderators, video owners, and comment authors) can be tricked into mass-deleting comments by simply visiting an attacker-controlled webpage.

Affected Products

  • WWBN AVideo versions 29.0 and prior
  • All installations with comment deletion functionality enabled
  • Deployments using cross-origin embed players with session.cookie_samesite=None

Discovery Timeline

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

Technical Details for CVE-2026-40929

Vulnerability Analysis

This CSRF vulnerability arises from insufficient request validation in the comment deletion endpoint. The objects/commentDelete.json.php file processes deletion requests without verifying that the request originated from the legitimate AVideo application. The vulnerability allows attackers to craft malicious web pages that, when visited by authenticated AVideo users, automatically submit comment deletion requests on behalf of those users.

The exploitation is facilitated by AVideo's explicit configuration of session.cookie_samesite=None, which was implemented to support cross-origin video embedding functionality. While this configuration serves a legitimate business purpose, it inadvertently creates a security gap when combined with the missing CSRF protections on state-changing endpoints.

Root Cause

The root cause is the absence of CSRF validation in the commentDelete.json.php endpoint. Specifically, the endpoint does not:

  1. Call the forbidIfIsUntrustedRequest() function that exists in the codebase
  2. Verify any CSRF token or global authentication token
  3. Validate the Origin or Referer HTTP headers

Combined with the permissive SameSite=None cookie configuration, this allows any external website to trigger comment deletions using the victim's authenticated session.

Attack Vector

The attack requires user interaction where an authenticated victim must visit an attacker-controlled webpage. The attacker can embed hidden forms or JavaScript that automatically submits POST requests to the vulnerable endpoint. Since the victim's session cookie is automatically included due to the SameSite=None configuration, the AVideo server processes these requests as legitimate authenticated actions.

The following patch demonstrates how the fix addresses this vulnerability by adding the forbidIfIsUntrustedRequest() validation:

php
 $obj->msg = "";
 
 $plugin = AVideoPlugin::loadPluginIfEnabled('{pluginName}');

 if(!User::isAdmin()){
     $obj->msg = "You cant do this";
     die(json_encode($obj));
 }

+forbidIfIsUntrustedRequest('{pluginName}::{classname}::add');

 $o = new {classname}(@$_POST['id']);
 {columnsAdd}

Source: GitHub Commit Change

The deletion endpoint receives the same protection:

php
     die(json_encode($obj));
 }

+forbidIfIsUntrustedRequest('{pluginName}::{classname}::delete');

 $id = intval($_POST['id']);
 $row = new {classname}($id);
 $obj->error = !$row->delete();
 die(json_encode($obj));
?>

Source: GitHub Commit Change

Detection Methods for CVE-2026-40929

Indicators of Compromise

  • Unexpected bulk deletion of comments across multiple videos
  • Web server logs showing POST requests to objects/commentDelete.json.php with external Referer headers
  • Multiple comment deletion requests occurring in rapid succession from the same user session
  • User reports of comments disappearing without user action

Detection Strategies

  • Implement web application firewall (WAF) rules to flag requests to commentDelete.json.php with external or missing Referer headers
  • Monitor application logs for comment deletion patterns that indicate automated or bulk operations
  • Configure intrusion detection systems to alert on cross-origin requests targeting state-changing endpoints
  • Review HTTP request logs for unusual patterns of authenticated requests originating from external domains

Monitoring Recommendations

  • Enable detailed logging for all comment-related API endpoints
  • Set up alerts for anomalous comment deletion rates per user session
  • Monitor for cross-origin requests to sensitive JSON endpoints
  • Implement session activity monitoring to detect automated request patterns

How to Mitigate CVE-2026-40929

Immediate Actions Required

  • Upgrade WWBN AVideo to a version that includes commit 184f36b1896f3364f864f17c1acca3dd8df3af27 or later
  • Review and audit all JSON endpoints for similar missing CSRF protections
  • Consider temporarily restricting access to administrative and moderation features until patching is complete
  • Alert privileged users (moderators, video owners) about potential phishing attempts

Patch Information

The vulnerability has been fixed in commit 184f36b1896f3364f864f17c1acca3dd8df3af27. The fix implements the forbidIfIsUntrustedRequest() function call on affected endpoints to validate that requests originate from trusted sources. Organizations running WWBN AVideo version 29.0 or earlier should apply this patch immediately.

For detailed patch information, refer to the GitHub Commit Change and the GitHub Security Advisory.

Workarounds

  • Implement a reverse proxy rule to block requests to commentDelete.json.php from external Referer origins
  • Temporarily disable comment functionality if immediate patching is not possible
  • Configure web application firewall rules to require valid Origin headers matching the AVideo domain
  • Educate privileged users to avoid clicking links from untrusted sources while logged into AVideo
bash
# Example nginx configuration to block external referers
# Add to your server block configuration
location /objects/commentDelete.json.php {
    # Only allow requests with matching referer
    if ($http_referer !~* "^https?://your-avideo-domain\.com") {
        return 403;
    }
    # Continue with normal processing
    try_files $uri =404;
    fastcgi_pass php-fpm;
}

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

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.01%

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41056: WWBN AVideo CSRF Vulnerability

  • CVE-2026-40928: Wwbn Avideo CSRF Vulnerability

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