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

CVE-2026-33492: WWBN AVideo Auth Bypass Vulnerability

CVE-2026-33492 is an authentication bypass flaw in WWBN AVideo that enables session fixation attacks through arbitrary session ID acceptance. This post explains its technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33492 Overview

WWBN AVideo, an open source video platform, contains a session fixation vulnerability in versions up to and including 26.0. The platform's _session_start() function accepts arbitrary session IDs via the PHPSESSID GET parameter and sets them as the active PHP session. A session regeneration bypass exists for specific blacklisted endpoints when the request originates from the same domain. Combined with the explicitly disabled session regeneration in User::login(), this allows attackers to perform a classic session fixation attack where they can fix a victim's session ID before authentication and subsequently hijack the authenticated session.

Critical Impact

Successful exploitation allows attackers to hijack authenticated user sessions, potentially gaining unauthorized access to user accounts and sensitive video platform functionality.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • All installations using the vulnerable _session_start() function
  • Deployments with default session handling configurations

Discovery Timeline

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

Technical Details for CVE-2026-33492

Vulnerability Analysis

This vulnerability represents a classic session fixation attack vector (CWE-384) in the AVideo platform's session management implementation. The core issue stems from the _session_start() function's acceptance of user-controlled session IDs through the PHPSESSID GET parameter without proper validation or regeneration.

The attack is enabled by two compounding factors: first, the platform accepts arbitrary session IDs from request parameters and activates them as the current PHP session. Second, session regeneration is explicitly disabled in the User::login() function, meaning that when a user authenticates, their session ID remains unchanged.

This creates an attack scenario where an adversary can craft a malicious link containing a pre-determined session ID. When the victim clicks the link and subsequently authenticates, the attacker—who already knows the session ID—can use that same session to access the victim's authenticated session.

Root Cause

The root cause is improper session management in the AVideo platform. The _session_start() function fails to validate or reject externally-provided session identifiers, and the authentication flow in User::login() does not regenerate the session ID upon successful login. This violates secure session management best practices which mandate session regeneration after privilege level changes such as authentication.

Attack Vector

The attack requires network access and user interaction. An attacker would craft a URL to the AVideo platform containing a predetermined PHPSESSID parameter. The attacker sends this link to a victim, who clicks it and logs in to their AVideo account. Since the session ID is not regenerated upon login, the attacker can then use the known session ID to access the victim's authenticated session and impersonate them on the platform.

The attack is facilitated by a bypass mechanism that affects specific blacklisted endpoints when requests originate from the same domain, further reducing the effectiveness of any partial mitigations that may have been in place.

Detection Methods for CVE-2026-33492

Indicators of Compromise

  • Unusual session ID patterns in web server logs, particularly PHPSESSID values appearing in GET parameters
  • Multiple authentications occurring with the same pre-existing session ID from different IP addresses
  • Login events where the session ID remains unchanged before and after authentication
  • Referrer headers showing external sources directing users to URLs with embedded session IDs

Detection Strategies

  • Monitor web application logs for PHPSESSID parameters in URL query strings
  • Implement alerting for sessions that authenticate without subsequent session ID regeneration
  • Deploy web application firewall rules to detect and block URLs containing session ID parameters
  • Analyze authentication logs for session reuse patterns across different client IP addresses

Monitoring Recommendations

  • Enable verbose logging for session management functions in AVideo
  • Configure SIEM rules to correlate session creation events with authentication events
  • Monitor for anomalous session activity patterns indicative of session hijacking
  • Track user sessions that span multiple geographic locations or client fingerprints

How to Mitigate CVE-2026-33492

Immediate Actions Required

  • Update AVideo to a version containing commit 5647a94d79bf69a972a86653fe02144079948785 or later
  • Review session management configurations and ensure session regeneration is enabled on authentication
  • Audit access logs for potential exploitation attempts prior to patching
  • Consider implementing additional session security controls such as binding sessions to client attributes

Patch Information

The vulnerability has been addressed in commit 5647a94d79bf69a972a86653fe02144079948785. Organizations running WWBN AVideo should update to the latest version containing this fix. Detailed information about the patch is available in the GitHub Commit and the GitHub Security Advisory.

Workarounds

  • Configure web server or reverse proxy rules to strip or reject PHPSESSID parameters from incoming URLs
  • Implement network-level controls to limit access to the AVideo platform from trusted sources only
  • Enable strict cookie-only session handling at the PHP configuration level by setting session.use_only_cookies = 1
  • Deploy a web application firewall to detect and block session fixation attack patterns
bash
# PHP configuration to enforce cookie-only sessions
# Add to php.ini or .htaccess
php_value session.use_only_cookies 1
php_value session.use_trans_sid 0
php_value session.cookie_httponly 1
php_value session.cookie_secure 1

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWwbn Avideo

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.07%

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-39366: AVideo PayPal Auth Bypass Vulnerability

  • CVE-2026-35179: WWBN AVideo Auth Bypass Vulnerability

  • CVE-2026-34737: Wwbn Avideo Auth Bypass Vulnerability

  • CVE-2026-34738: Wwbn Avideo Auth Bypass 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