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

CVE-2026-34375: Wwbn Avideo XSS Vulnerability

CVE-2026-34375 is a cross-site scripting flaw in Wwbn Avideo that allows attackers to inject malicious JavaScript and steal user credentials. This post covers technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-34375 Overview

A reflected Cross-Site Scripting (XSS) vulnerability exists in WWBN AVideo, an open source video platform. In versions up to and including 26.0, the YPTWallet Stripe payment confirmation page directly echoes the $_REQUEST['plugin'] parameter into a JavaScript block without any encoding or sanitization. The plugin parameter is not included in any of the framework's input filter lists defined in security.php, allowing malicious input to pass through completely raw.

Critical Impact

An attacker can inject arbitrary JavaScript via a crafted malicious URL. The vulnerable script block also outputs the current user's username and password hash via User::getUserName() and User::getUserPass(), meaning successful XSS exploitation can immediately exfiltrate user credentials.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • YPTWallet Stripe payment confirmation functionality
  • Self-hosted AVideo installations using the Stripe payment plugin

Discovery Timeline

  • 2026-03-27 - CVE-2026-34375 published to NVD
  • 2026-03-31 - Last updated in NVD database

Technical Details for CVE-2026-34375

Vulnerability Analysis

This reflected XSS vulnerability stems from improper handling of user-supplied input in the YPTWallet Stripe payment confirmation page. The $_REQUEST['plugin'] parameter is directly embedded into a JavaScript execution context without any output encoding, HTML entity escaping, or input validation. What makes this vulnerability particularly dangerous is the presence of sensitive user data within the same script block—specifically the user's username and password hash retrieved via User::getUserName() and User::getUserPass() method calls.

The lack of input filtering occurs because the plugin parameter was not added to the framework's security filter definitions in security.php. This oversight allows attackers to break out of the JavaScript context and inject arbitrary code that executes in the victim's browser session with full access to the DOM, cookies, and the exposed credentials.

Root Cause

The root cause is insufficient input validation and missing output encoding for the plugin request parameter. The AVideo framework maintains security filter lists in security.php that sanitize request parameters, but the plugin parameter was inadvertently omitted from these lists. Combined with the direct echo of user input into a JavaScript context and the exposure of sensitive credential data within the same code block, this creates a high-severity security flaw.

Attack Vector

The attack is network-based and requires user interaction. An attacker crafts a malicious URL containing JavaScript payload in the plugin parameter and tricks a victim into clicking it (via phishing, social engineering, or embedding the link). When the victim visits the malicious URL while authenticated to AVideo, the injected JavaScript executes in their browser context. The attacker's payload can access and exfiltrate the victim's username and password hash that are already present in the page's JavaScript context.

The vulnerability can be exploited by injecting JavaScript that escapes the existing string context and adds malicious code. This could involve using string terminators and script injection patterns to break out of the intended JavaScript variable assignment and execute attacker-controlled code. The attack requires no privileges on the target system but does require the victim to be authenticated to maximize impact through credential theft.

Detection Methods for CVE-2026-34375

Indicators of Compromise

  • Unusual URL parameters containing JavaScript code patterns such as <script>, javascript:, or encoded variants in the plugin parameter
  • Web server access logs showing requests to Stripe payment confirmation pages with suspicious query strings
  • Browser console errors or unexpected script execution on payment-related pages
  • Reports of credential theft or unauthorized account access following visits to payment pages

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block XSS payloads in URL parameters
  • Monitor HTTP request logs for suspicious patterns in the plugin parameter targeting YPTWallet Stripe endpoints
  • Deploy client-side XSS detection through Content Security Policy (CSP) violation reporting
  • Use runtime application self-protection (RASP) solutions to detect JavaScript injection attempts

Monitoring Recommendations

  • Enable detailed logging for all requests to the YPTWallet and Stripe-related endpoints
  • Configure alerting for unusual patterns in query string parameters, particularly those containing script-related keywords
  • Monitor for anomalous outbound connections from client browsers that may indicate credential exfiltration
  • Review authentication logs for signs of credential compromise following suspected XSS attacks

How to Mitigate CVE-2026-34375

Immediate Actions Required

  • Upgrade WWBN AVideo to a version containing the security fix (commit fa0bc102493a15d79fe03f86c07ab7ca1b5b63e2 or later)
  • If immediate patching is not possible, consider temporarily disabling the YPTWallet Stripe payment functionality
  • Implement a Content Security Policy (CSP) header to restrict inline script execution
  • Review web server logs for any evidence of prior exploitation attempts

Patch Information

The vulnerability is fixed in commit fa0bc102493a15d79fe03f86c07ab7ca1b5b63e2. Administrators should update their AVideo installations to incorporate this fix. The commit addresses the input sanitization issue by properly encoding the plugin parameter before outputting it in the JavaScript context. For detailed information about the fix, refer to the GitHub Commit Details and the GitHub Security Advisory GHSA-pm37-62g7-p768.

Workarounds

  • Deploy a WAF rule to sanitize or block requests containing suspicious characters in the plugin parameter
  • Implement Content Security Policy headers with strict script-src directives to prevent inline script execution
  • Consider restricting access to payment confirmation pages to authenticated sessions only with additional CSRF protection
  • As a temporary measure, modify the application code to manually sanitize the plugin parameter using appropriate encoding functions
bash
# Example Content Security Policy header configuration for Apache
# Add to .htaccess or virtual host configuration
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; frame-ancestors 'none';"

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

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.03%

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

  • GitHub Security Advisory GHSA-pm37-62g7-p768
  • 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-33683: 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