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

CVE-2026-35181: WWBN AVideo CSRF Vulnerability

CVE-2026-35181 is a CSRF flaw in WWBN AVideo that allows attackers to modify player skin settings via cross-origin requests. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: April 10, 2026

CVE-2026-35181 Overview

CVE-2026-35181 is a Cross-Site Request Forgery (CSRF) vulnerability affecting WWBN AVideo, an open source video platform. In versions 26.0 and prior, the player skin configuration endpoint at admin/playerUpdate.json.php does not validate CSRF tokens. The plugins table is explicitly excluded from the ORM's domain-based security check via ignoreTableSecurityCheck(), removing the only other layer of defense. Combined with SameSite=None cookies, a cross-origin POST can modify the video player appearance on the entire platform.

Critical Impact

An attacker can exploit this CSRF vulnerability to modify the video player appearance across the entire AVideo platform without authentication, potentially enabling defacement or malicious content injection through cross-origin requests.

Affected Products

  • WWBN AVideo versions 26.0 and prior

Discovery Timeline

  • 2026-04-06 - CVE CVE-2026-35181 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-35181

Vulnerability Analysis

This vulnerability is classified as CWE-352 (Cross-Site Request Forgery). The core issue lies in the admin/playerUpdate.json.php endpoint's failure to implement CSRF token validation, a critical security control for state-changing operations. The vulnerability is compounded by an intentional security exclusion: the ignoreTableSecurityCheck() function explicitly removes the plugins table from the ORM's domain-based security verification.

The attack is network-accessible and requires user interaction, specifically that an authenticated administrator visits a malicious page while their session is active. The configuration of SameSite=None cookies enables cross-origin requests to include authentication credentials, allowing the attack to succeed from any malicious website.

Root Cause

The root cause is the absence of CSRF token validation on the player skin configuration endpoint combined with the explicit exclusion of the plugins table from security checks via ignoreTableSecurityCheck(). This design flaw, coupled with permissive cookie settings (SameSite=None), creates an exploitable attack surface that allows unauthorized cross-origin modification of platform-wide video player settings.

Attack Vector

The attack vector is network-based, requiring an authenticated administrator to visit a malicious web page. The attacker crafts a page containing a hidden form or JavaScript that automatically submits a POST request to the vulnerable admin/playerUpdate.json.php endpoint. Because the endpoint lacks CSRF protection and cookies are configured with SameSite=None, the victim's browser includes their authentication credentials with the cross-origin request, allowing the attacker to modify video player configurations on behalf of the administrator.

The attack exploits the trust relationship between the browser and the AVideo platform, leveraging the administrator's active session to make unauthorized changes. For technical details and proof-of-concept information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-35181

Indicators of Compromise

  • Unexpected changes to video player skin or appearance settings across the platform
  • HTTP POST requests to admin/playerUpdate.json.php originating from external referrers
  • Anomalous cross-origin requests to administrative endpoints in web server logs
  • Session logs showing administrative actions occurring during unusual browsing patterns

Detection Strategies

  • Monitor HTTP access logs for requests to admin/playerUpdate.json.php with external or missing Referer headers
  • Implement web application firewall (WAF) rules to detect cross-origin POST requests to administrative endpoints
  • Configure intrusion detection systems to alert on suspicious patterns of administrative configuration changes
  • Enable detailed audit logging for all player configuration modifications

Monitoring Recommendations

  • Review web server logs regularly for cross-origin request patterns targeting administrative endpoints
  • Set up alerts for bulk or rapid changes to video player configurations
  • Monitor for sudden changes in referrer patterns for administrative API calls
  • Implement real-time alerting for configuration changes outside of normal administrative workflows

How to Mitigate CVE-2026-35181

Immediate Actions Required

  • Upgrade WWBN AVideo to a version newer than 26.0 once a patch is available
  • Implement a Web Application Firewall (WAF) rule to block suspicious cross-origin POST requests to administrative endpoints
  • Review and restrict cookie settings, changing SameSite attribute from None to Strict or Lax where possible
  • Educate administrators about CSRF risks and the importance of not browsing untrusted sites while logged in

Patch Information

At the time of publication, users should monitor the GitHub Security Advisory for official patch releases from WWBN. Upgrading to a version beyond 26.0 that includes CSRF token validation is the recommended remediation.

Workarounds

  • Configure web server or reverse proxy to reject requests to admin/playerUpdate.json.php that lack a valid Referer header from the same origin
  • Implement network-level access controls to restrict administrative endpoint access to trusted IP addresses only
  • Use browser extensions or policies that enforce strict cookie handling for administrative sessions
  • Consider temporarily disabling external access to the administrative interface until a patch is applied

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 Score4.3

  • 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:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • GitHub Security Advisory
  • 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-40926: 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