A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-33035

CVE-2026-33035: WWBN AVideo Reflected XSS Vulnerability

CVE-2026-33035 is a reflected XSS vulnerability in WWBN AVideo that enables unauthenticated attackers to execute arbitrary JavaScript in victims' browsers, leading to session theft and account takeover. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 27, 2026

CVE-2026-33035 Overview

CVE-2026-33035 is a reflected Cross-Site Scripting (XSS) vulnerability affecting WWBN AVideo, an open source video platform. In versions 25.0 and below, unauthenticated attackers can execute arbitrary JavaScript in a victim's browser by exploiting improper input handling in URL parameters. User input flows through PHP's json_encode() into a JavaScript function that renders content via innerHTML, effectively bypassing encoding mechanisms and enabling full script execution.

Critical Impact

This vulnerability allows attackers to steal session cookies, take over accounts, phish credentials via injected login forms, spread self-propagating payloads, and compromise admin accounts — all exploiting the lack of proper input sanitization and missing HttpOnly flag on PHPSESSID.

Affected Products

  • WWBN AVideo versions 25.0 and below
  • All installations using the vulnerable videoNotFound.php and script.js components
  • Self-hosted AVideo deployments without security patches applied

Discovery Timeline

  • 2026-03-20 - CVE-2026-33035 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-33035

Vulnerability Analysis

The reflected XSS vulnerability in WWBN AVideo stems from a dangerous combination of two distinct security weaknesses working in concert. The first issue involves the videoNotFound.php file, which accepts user-controlled input from URL parameters and passes this data through PHP's json_encode() function before embedding it into JavaScript context. While json_encode() provides some escaping for JSON syntax, it does not adequately sanitize content destined for HTML rendering.

The second contributing factor resides in script.js, where the application uses innerHTML to render the encoded content directly into the DOM. When innerHTML processes HTML tags, it interprets and executes them as active DOM elements, allowing attackers to inject malicious script tags or event handlers that execute JavaScript code in the victim's browser session.

This attack chain requires no authentication, making it particularly dangerous for public-facing AVideo installations. The missing HttpOnly flag on the PHPSESSID cookie exacerbates the risk by allowing JavaScript to access session cookies, enabling complete session hijacking.

Root Cause

The root cause is twofold: improper input validation in videoNotFound.php that fails to sanitize user-controlled URL parameters before passing them to JavaScript, combined with unsafe DOM manipulation in script.js that uses innerHTML to render potentially malicious content. The lack of Content Security Policy (CSP) headers and missing HttpOnly cookie flags further compound the vulnerability's severity.

Attack Vector

An attacker crafts a malicious URL containing JavaScript payload in a vulnerable parameter. When a victim clicks this link, the AVideo application processes the input through json_encode(), passes it to JavaScript, and renders it via innerHTML. The browser interprets the injected content as executable code, allowing the attacker to steal cookies, hijack sessions, inject phishing forms, or perform actions on behalf of the authenticated user.

The security patch addresses this vulnerability by introducing HTML-safe content handling functions. The fix replaces unsafe alert functions with sanitized alternatives:

php
                             $users_id = $isACompany ? $value['users_id_affiliate'] : $value['users_id_company'];
                             $value['users_id'] = $users_id;
 
-                            $value['js'] = 'avideoAlertOnce('
+                            $value['js'] = 'avideoAlertOnceHTML('
                                 . '"' . __('You have a new affiliation request') . '",'
                                 . "\"<a href='{$global['webSiteRootURL']}user?tab=tabAffiliation'>" . __('Please click here') . '</a>", "info", "' . $value['id'] . $value['modified'] . '");';
 

Source: GitHub Commit Details

Similarly, JavaScript confirmation dialogs were updated to use HTML-safe variants:

javascript
     }
 
     // Use avideoConfirm to ask for user confirmation and include a progress bar
-    avideoConfirm(customMessage + '<hr>' + __("You will be redirected to the following URL:") + "<br><strong>" + viewerUrl + "</strong><br><div class='progress' style='height: 10px;'><div id='countdownProgressBar' class='progress-bar progress-bar-striped progress-bar-animated' role='progressbar' style='width: 0%;' aria-valuenow='0' aria-valuemin='0' aria-valuemax='100'></div></div>").then(function (confirmed) {
+    avideoConfirmHTML(customMessage + '<hr>' + __("You will be redirected to the following URL:") + "<br><strong>" + viewerUrl + "</strong><br><div class='progress' style='height: 10px;'><div id='countdownProgressBar' class='progress-bar progress-bar-striped progress-bar-animated' role='progressbar' style='width: 0%;' aria-valuenow='0' aria-valuemin='0' aria-valuemax='100'></div></div>").then(function (confirmed) {
         if (confirmed) {
             clearInterval(countdownInterval); // Stop countdown if user confirms
             redirectToUrl(viewerUrl);

Source: GitHub Commit Details

Detection Methods for CVE-2026-33035

Indicators of Compromise

  • Unusual URL parameters containing encoded JavaScript payloads targeting videoNotFound.php
  • Web server logs showing requests with <script>, onerror=, onload=, or other XSS payload signatures
  • Unexpected session activity or account access from unfamiliar IP addresses following link clicks
  • User reports of suspicious redirects or credential prompts on the AVideo platform

Detection Strategies

  • Deploy Web Application Firewall (WAF) rules to detect and block common XSS payload patterns in URL parameters
  • Implement Content Security Policy (CSP) headers to restrict script execution sources and report violations
  • Monitor web server access logs for requests containing URL-encoded JavaScript or HTML injection attempts
  • Use browser-based XSS auditors and security tools to identify reflected script execution

Monitoring Recommendations

  • Enable detailed logging for all requests to videoNotFound.php and related vulnerable endpoints
  • Set up alerts for anomalous patterns in URL parameters, particularly those containing angle brackets or JavaScript keywords
  • Monitor for sudden increases in session invalidations or password reset requests that may indicate account compromise
  • Review authentication logs for login attempts following suspicious URL access patterns

How to Mitigate CVE-2026-33035

Immediate Actions Required

  • Upgrade WWBN AVideo to version 26.0 or later immediately to apply the security fix
  • If immediate upgrade is not possible, restrict access to the AVideo platform or place it behind authentication
  • Add the HttpOnly and Secure flags to the PHPSESSID cookie configuration
  • Implement Content Security Policy (CSP) headers to mitigate XSS impact

Patch Information

The vulnerability has been fixed in WWBN AVideo version 26.0. The patch (commit cca6196f4072cb9acc39b1030fb8fb1702b4f69b) introduces HTML-safe content handling functions that properly sanitize user input before rendering. Organizations should upgrade to version 26.0 or apply the specific commit fix. For detailed patch information, refer to the GitHub Security Advisory and GitHub Commit Details.

Workarounds

  • Configure web server to set HttpOnly and Secure flags on all session cookies
  • Deploy a reverse proxy or WAF with XSS filtering enabled to block malicious payloads
  • Implement strict Content Security Policy headers that disable inline script execution
  • Consider temporarily disabling public access to the video platform until patching is complete
bash
# Apache configuration to add HttpOnly flag to cookies
# Add to .htaccess or Apache configuration file
Header edit Set-Cookie ^(.*)$ $1;HttpOnly;Secure

# Nginx configuration for CSP headers
# Add to server or location block
add_header Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline';" always;
add_header X-Content-Type-Options "nosniff" always;
add_header X-XSS-Protection "1; mode=block" always;

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechWwbn Avideo

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-45580: Wwbn Avideo Stored XSS Vulnerability

  • CVE-2026-47694: Wwbn Avideo XSS Vulnerability

  • CVE-2026-43882: WWBN AVideo XSS Vulnerability

  • CVE-2026-41063: WWBN AVideo XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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