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

CVE-2026-33683: WWBN AVideo XSS Vulnerability

CVE-2026-33683 is a cross-site scripting flaw in WWBN AVideo that allows registered users to inject malicious JavaScript via the profile about field. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33683 Overview

CVE-2026-33683 is a stored Cross-Site Scripting (XSS) vulnerability affecting WWBN AVideo, an open source video platform. The vulnerability exists in versions up to and including 26.0, where a sanitization order-of-operations flaw in the user profile "about" field allows any registered user to inject arbitrary JavaScript that executes when other users visit their channel page.

Critical Impact

Authenticated attackers can inject persistent malicious JavaScript that executes in the browsers of any user visiting the attacker's channel page, potentially leading to session hijacking, credential theft, or further account compromise.

Affected Products

  • WWBN AVideo versions up to and including 26.0

Discovery Timeline

  • 2026-03-23 - CVE-2026-33683 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33683

Vulnerability Analysis

This vulnerability stems from a flawed sanitization sequence in the user profile functionality of WWBN AVideo. The platform attempts to protect against XSS attacks using multiple sanitization functions, but the order in which these functions are applied creates a bypass opportunity.

The core issue lies in how the xss_esc() function entity-encodes user input before the strip_specific_tags() function has a chance to identify and remove dangerous HTML tags. When the encoded content is later output to the page, html_entity_decode() reverses the encoding, effectively restoring the original malicious HTML payload that was never properly stripped.

This type of vulnerability is particularly dangerous because it is stored (persistent) rather than reflected. Once an attacker injects malicious JavaScript into their profile's "about" field, it will execute every time another user views their channel page, without requiring any further action from the attacker.

Root Cause

The root cause is an incorrect order-of-operations in the input sanitization pipeline. The xss_esc() function encodes HTML entities before strip_specific_tags() can match and remove dangerous tags like <script>. Since the tags are encoded (e.g., <script>), they no longer match the patterns that strip_specific_tags() is looking for. Subsequently, when the content is displayed, html_entity_decode() converts the entities back to their original characters, restoring the malicious payload.

Attack Vector

The attack is network-based and requires the attacker to have a registered account on the target AVideo platform. The attacker simply needs to:

  1. Register or log into an account on the vulnerable AVideo instance
  2. Navigate to their profile settings
  3. Insert a malicious JavaScript payload in the "about" field
  4. Save the profile changes

When any other user (including administrators) visits the attacker's channel page, the malicious script executes in their browser context. This could be leveraged to steal session cookies, perform actions on behalf of the victim, redirect users to phishing pages, or deliver additional malware.

The vulnerability requires user interaction (the victim must visit the attacker's channel page), and the scope is changed since the vulnerability in the web application impacts resources beyond its security scope (the victim's browser session).

Detection Methods for CVE-2026-33683

Indicators of Compromise

  • Unusual or suspicious content in user profile "about" fields containing HTML tags or JavaScript code
  • User reports of unexpected browser behavior when visiting certain channel pages
  • Web application firewall (WAF) logs showing blocked XSS patterns originating from profile data
  • Unexpected outbound network requests from user browsers to external domains when viewing channel pages

Detection Strategies

  • Implement content security policy (CSP) headers with strict directives and monitor for violations
  • Deploy web application firewall rules to detect stored XSS patterns in form submissions
  • Review user profile data in the database for suspicious HTML or JavaScript content
  • Enable client-side XSS auditing and logging where supported by browsers

Monitoring Recommendations

  • Monitor WAF logs for XSS-related blocking events, particularly those targeting user input fields
  • Set up alerts for CSP violation reports indicating inline script execution attempts
  • Audit user profile content periodically for signs of injection attempts
  • Track unusual patterns in channel page visits that might indicate social engineering to drive victims to malicious profiles

How to Mitigate CVE-2026-33683

Immediate Actions Required

  • Upgrade WWBN AVideo to a version containing commit 7cfdc380dae1e56bbb5de581470d9e9957445df0 or later
  • If immediate patching is not possible, consider disabling or restricting the user profile "about" field functionality
  • Audit existing user profiles for potentially malicious content and sanitize as needed
  • Implement Content Security Policy headers to mitigate the impact of any successful XSS attacks

Patch Information

The vulnerability has been addressed in commit 7cfdc380dae1e56bbb5de581470d9e9957445df0. Users should update to a version of AVideo that includes this commit. For detailed information about the fix, refer to the GitHub Commit and the GitHub Security Advisory GHSA-ghx5-7jjg-q2j7.

Workarounds

  • Implement strict Content Security Policy (CSP) headers that block inline script execution with directives like script-src 'self'
  • Deploy a web application firewall (WAF) configured to sanitize or block XSS payloads in user input
  • Temporarily disable or restrict the user profile "about" field until the patch can be applied
  • Limit the ability for new or untrusted users to set profile information until the system is patched
bash
# Example CSP header configuration for Apache
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; frame-ancestors 'self';"

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.4

  • EPSS Probability0.03%

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

  • GitHub Security Advisory GHSA-ghx5-7jjg-q2j7
  • Related CVEs
  • CVE-2026-34396: Wwbn Avideo XSS Vulnerability

  • CVE-2026-34739: Wwbn Avideo XSS Vulnerability

  • CVE-2026-34716: Wwbn Avideo XSS Vulnerability

  • CVE-2026-34375: Wwbn Avideo XSS Vulnerability
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