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

CVE-2026-33296: WWBN AVideo Open Redirect Vulnerability

CVE-2026-33296 is an open redirect flaw in WWBN AVideo that redirects users to attacker-controlled sites after login. This article covers technical details, affected versions, impact, and mitigation steps.

Published: March 27, 2026

CVE-2026-33296 Overview

CVE-2026-33296 is an open redirect vulnerability discovered in WWBN AVideo, a popular open source video platform. The vulnerability exists in the login flow where a user-supplied redirectUri parameter is reflected directly into a JavaScript document.location assignment without proper JavaScript-safe encoding. After a user completes the login popup flow, a timer callback executes the redirect using the unvalidated value, potentially sending victims to attacker-controlled websites.

Critical Impact

Attackers can craft malicious login links that redirect authenticated users to phishing sites or malware distribution points after successful login, leveraging the trust users place in the legitimate AVideo domain.

Affected Products

  • WWBN AVideo versions prior to 26.0
  • All AVideo deployments using the vulnerable login popup flow
  • Self-hosted AVideo instances without the security patch applied

Discovery Timeline

  • 2026-03-22 - CVE CVE-2026-33296 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-33296

Vulnerability Analysis

This vulnerability stems from improper input validation (CWE-601: URL Redirection to Untrusted Site) in the AVideo login flow. The application accepts a redirectUri parameter that specifies where to redirect users after successful authentication. However, this parameter is inserted directly into JavaScript code without proper encoding or validation, creating an open redirect condition.

The vulnerable code path occurs in the login popup handler. When users authenticate through a popup window, a JavaScript timer monitors for the window to close. Once closed, the callback function redirects the user using the document.location property. Because the redirectUri value is output using PHP's print statement without JavaScript-safe encoding, attackers can inject arbitrary URLs that execute in the victim's browser context.

Root Cause

The root cause is insufficient output encoding when inserting user-controlled data into JavaScript code. The original implementation used a simple PHP print statement to output the redirect URI into a JavaScript string context. This approach fails to properly encode special characters that could break out of the intended string context or inject malicious URLs. The variable $safeRedirectUri was misleadingly named, as it was not actually sanitized or validated before being output to the client-side script.

Attack Vector

The attack leverages the network-accessible login functionality. An attacker crafts a malicious URL containing a redirectUri parameter pointing to an attacker-controlled domain. When shared with potential victims (via phishing emails, social media, or other channels), users clicking the link are presented with a legitimate AVideo login page. After successfully authenticating, the JavaScript timer detects the closed popup window and redirects the victim to the malicious site. This technique is particularly effective because the initial login occurs on the trusted AVideo domain, lending credibility to the attack.

php
// Vulnerable code - view/userLogin.php
         var logintimer = setInterval(function() {
             if (win.closed) {
                 clearInterval(logintimer);
-                document.location = "<?php print $safeRedirectUri; ?>";
+                document.location = <?php echo json_encode($safeRedirectUri); ?>;
             }
         }, 1000);
         $(document).ready(function() {

Source: GitHub Commit Update

The fix replaces the vulnerable print statement with json_encode(), which properly escapes the value for use in a JavaScript context, preventing URL injection attacks.

Detection Methods for CVE-2026-33296

Indicators of Compromise

  • Unusual redirectUri parameters in login URLs pointing to external domains
  • Server logs showing login requests with encoded or obfuscated redirect parameters
  • User reports of unexpected redirects after completing login procedures
  • HTTP referrer logs showing AVideo login pages leading to external suspicious domains

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block suspicious redirectUri parameters containing external domain references
  • Monitor authentication logs for login requests with redirect parameters pointing outside the application domain
  • Deploy URL analysis on login page parameters to identify potential phishing redirect attempts
  • Configure browser security tools to alert on post-authentication redirects to untrusted domains

Monitoring Recommendations

  • Enable verbose logging for login-related endpoints, specifically capturing redirect parameter values
  • Set up alerts for login URLs containing redirectUri parameters with external or suspicious domains
  • Monitor network traffic for HTTP redirects from authenticated sessions to unexpected destinations
  • Implement user behavior analytics to detect unusual post-login navigation patterns

How to Mitigate CVE-2026-33296

Immediate Actions Required

  • Upgrade WWBN AVideo to version 26.0 or later immediately
  • Review web server access logs for signs of exploitation attempts using malicious redirectUri values
  • Notify users about potential phishing attempts that may leverage this vulnerability
  • Implement URL allowlisting for redirect destinations as an additional security layer

Patch Information

WWBN has released version 26.0 which addresses this vulnerability. The fix implements proper JavaScript-safe encoding using PHP's json_encode() function when outputting the redirect URI into the client-side script. The security patch is available in commit 68d0fbb19e382fe62e6cc7bd48b51ffa1d9e310e. Organizations should upgrade to version 26.0 or apply the specific patch to the view/userLogin.php file. For more details, see the GitHub Security Advisory GHSA-hj5h-5623-gwhw.

Workarounds

  • Implement server-side URL validation to restrict redirect destinations to a predefined allowlist of trusted domains
  • Deploy a reverse proxy or WAF rule to strip or validate redirectUri parameters before they reach the application
  • Disable the login popup flow temporarily and use standard form-based authentication until patching is complete
  • Add Content Security Policy headers to restrict navigation targets from JavaScript
bash
# Configuration example - Apache mod_rewrite to strip external redirectUri
RewriteEngine On
RewriteCond %{QUERY_STRING} redirectUri=https?://(?!your-domain\.com) [NC]
RewriteRule ^(.*)$ $1? [R=302,L]

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechWwbn Avideo

  • SeverityLOW

  • CVSS Score2.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:A/VC:L/VI:L/VA:N/SC:N/SI:N/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-hj5h-5623-gwhw
  • Related CVEs
  • CVE-2026-40907: Wwbn Avideo Information Disclosure Flaw

  • CVE-2026-40908: WWBN AVideo Information Disclosure Flaw

  • CVE-2026-40909: WWBN AVideo RCE Vulnerability

  • CVE-2026-41056: 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