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

CVE-2026-33507: WWBN AVideo CSRF to RCE Vulnerability

CVE-2026-33507 is a CSRF to RCE vulnerability in WWBN AVideo that allows attackers to upload malicious plugins via authenticated admins. This post covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33507 Overview

CVE-2026-33507 is a Cross-Site Request Forgery (CSRF) vulnerability in WWBN AVideo, an open source video platform. In versions up to and including 26.0, the objects/pluginImport.json.php endpoint allows admin users to upload and install plugin ZIP files containing executable PHP code, but lacks any CSRF protection. Combined with the application explicitly setting session.cookie_samesite = 'None' for HTTPS connections, an unauthenticated attacker can craft a page that, when visited by an authenticated admin, silently uploads a malicious plugin containing a PHP webshell, achieving Remote Code Execution on the server.

Critical Impact

Unauthenticated attackers can achieve Remote Code Execution by tricking authenticated administrators into visiting a malicious page, enabling full server compromise through webshell deployment.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • AVideo installations using HTTPS with default session cookie configurations
  • Self-hosted AVideo instances with administrator accounts

Discovery Timeline

  • 2026-03-23 - CVE-2026-33507 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-33507

Vulnerability Analysis

This vulnerability represents a chained attack combining two security weaknesses in WWBN AVideo. The root issue stems from the objects/pluginImport.json.php endpoint accepting plugin ZIP file uploads from authenticated administrators without any CSRF token validation. While this alone would typically require an attacker to have admin credentials, the application's cookie configuration creates a critical escalation path.

When AVideo detects an HTTPS connection, it explicitly configures session.cookie_samesite = 'None', which was intentionally implemented to support cross-origin iframe embedding for video players on third-party sites. However, this configuration means that session cookies are sent with cross-origin requests, including those initiated by malicious websites. Since multipart/form-data is a CORS-safelisted Content-Type, browsers will send cross-origin POST requests without requiring an OPTIONS preflight check.

The attack requires user interaction—specifically, an authenticated administrator must visit an attacker-controlled page. When this occurs, the malicious page can automatically submit a form to the vulnerable endpoint, uploading a ZIP file containing a PHP webshell. The server processes this as a legitimate admin request because the session cookie accompanies the cross-origin request.

Root Cause

The vulnerability exists due to missing CSRF token validation on a state-changing endpoint combined with a permissive SameSite=None cookie policy. The plugin import functionality performs authentication checks but does not verify that the request originated from a legitimate user action within the application. CWE-352 (Cross-Site Request Forgery) accurately classifies this weakness.

Attack Vector

The attack is network-based and requires no authentication from the attacker's perspective. The exploitation flow involves:

  1. Attacker hosts a malicious webpage containing an auto-submitting form targeting the vulnerable endpoint
  2. The form includes a crafted plugin ZIP file with an embedded PHP webshell
  3. An authenticated AVideo administrator visits the attacker's page
  4. The browser automatically submits the form with the admin's session cookie
  5. The server installs the malicious plugin, deploying the webshell
  6. Attacker accesses the webshell to execute arbitrary commands on the server

The following patch was applied to implement CSRF protection:

php
// CSRF protection: require a valid server-issued token.
// multipart/form-data is a CORS-safelisted Content-Type, so browsers send it
// cross-origin without an OPTIONS preflight. With SameSite=None on HTTPS the
// session cookie is also included, making a pure session check insufficient.
if (!isGlobalTokenValid()) {
    http_response_code(403);
    $obj->msg = "Invalid or missing CSRF token";
    die(json_encode($obj));
}

// Validate that a file was actually uploaded
if (!isset($_FILES['input-b1']) || empty($_FILES['input-b1']['name'])) {
    $obj->msg = "No file uploaded";

Source: GitHub Commit

The patch also includes documentation explaining the intentional use of SameSite=None:

php
if ($isHTTPS) {
    // SameSite=None is intentional: AVideo supports cross-origin iframe embedding
    // where users must stay authenticated (e.g. video players on third-party sites).
    // Setting Lax would break that use case. All state-mutating endpoints that are
    // vulnerable to CSRF must instead enforce a short-lived globalToken (verifyToken).
    ini_set('session.cookie_samesite', 'None');
    ini_set('session.cookie_secure', '1');
}

Source: GitHub Commit

Detection Methods for CVE-2026-33507

Indicators of Compromise

  • Unexpected PHP files appearing in plugin directories, particularly files with generic names like shell.php, cmd.php, or obfuscated filenames
  • Web server logs showing POST requests to objects/pluginImport.json.php with cross-origin Referer or Origin headers
  • Newly installed plugins that were not authorized by administrators
  • Evidence of webshell activity including unusual PHP process spawning or outbound network connections

Detection Strategies

  • Monitor HTTP logs for requests to /objects/pluginImport.json.php where the Origin or Referer header does not match your AVideo domain
  • Implement file integrity monitoring on the AVideo plugin directories to detect unauthorized file additions
  • Review installed plugins regularly and compare against expected/authorized plugin list
  • Configure web application firewall rules to detect webshell patterns in uploaded files

Monitoring Recommendations

  • Enable verbose logging for the plugin import functionality and review logs for anomalous upload activity
  • Deploy endpoint detection and response (EDR) solutions on servers hosting AVideo to detect post-exploitation activity
  • Set up alerts for new PHP file creation within the AVideo installation directory
  • Monitor administrator account activity for plugin installations that occur outside normal maintenance windows

How to Mitigate CVE-2026-33507

Immediate Actions Required

  • Update WWBN AVideo to a version containing commit d1bc1695edd9ad4468a48cea0df6cd943a2635f3 or later
  • Audit recently installed plugins for unauthorized or suspicious additions
  • Review web server logs for evidence of exploitation attempts
  • Educate administrators about the risks of visiting untrusted websites while authenticated to administrative interfaces

Patch Information

WWBN has released a fix in commit d1bc1695edd9ad4468a48cea0df6cd943a2635f3. The patch implements CSRF protection using a global token validation mechanism (isGlobalTokenValid()) for the plugin import endpoint. This ensures that only requests containing a valid server-issued token are processed, effectively preventing cross-origin exploitation. Refer to the GitHub Security Advisory for complete details.

Workarounds

  • Restrict network access to the AVideo administrative interface to trusted IP addresses or VPN connections
  • Use a separate browser or browser profile for AVideo administration that is not used for general web browsing
  • Implement web application firewall rules to block requests to /objects/pluginImport.json.php from external origins
  • Consider disabling plugin upload functionality if not required for operations
bash
# Example: Restrict access to plugin import endpoint via .htaccess
<Files "pluginImport.json.php">
    Order Deny,Allow
    Deny from all
    # Allow only from trusted admin IPs
    Allow from 192.168.1.0/24
    Allow from 10.0.0.0/8
</Files>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWwbn Avideo

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.05%

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33648: Wwbn Avideo RCE Vulnerability

  • CVE-2026-33647: Wwbn Avideo RCE Vulnerability

  • CVE-2026-33717: Wwbn Avideo RCE Vulnerability

  • CVE-2026-33319: Wwbn Avideo RCE 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