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
    • 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-43874

CVE-2026-43874: WWBN AVideo RCE Vulnerability

CVE-2026-43874 is a remote code execution flaw in WWBN AVideo that allows unauthenticated attackers to execute arbitrary code via WebSocket bypass. This post explains its impact, affected versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-43874 Overview

CVE-2026-43874 is a code injection vulnerability in WWBN AVideo, an open source video platform. The flaw affects versions up to and including 29.0 and resides in the YPTSocket plugin's WebSocket message relay logic. The previous patch for CVE-2026-40911 only sanitized payloads nested under $json['msg'], while the relay function msgToResourceId() reads the outbound message from $msg['json'] first. An unauthenticated attacker can obtain a WebSocket token, connect to the server, and deliver an autoEvalCodeOnHTML payload that any logged-in target executes through client-side eval(). The issue maps to CWE-94: Improper Control of Generation of Code.

Critical Impact

Unauthenticated attackers can deliver arbitrary JavaScript that executes in the browser session of any authenticated AVideo user, enabling account takeover and session theft.

Affected Products

  • WWBN AVideo versions up to and including 29.0
  • YPTSocket plugin component
  • Deployments exposing plugin/YPTSocket/getWebSocket.json.php to untrusted networks

Discovery Timeline

  • 2026-05-11 - CVE-2026-43874 published to NVD
  • 2026-05-12 - Last updated in NVD database
  • Fix committed in commit 9f3006f9a89a34daa67a83c6ad35f450cb91fcce

Technical Details for CVE-2026-43874

Vulnerability Analysis

The vulnerability is a server-side sanitization bypass that enables client-side code injection through a WebSocket relay. AVideo's YPTSocket plugin processes inbound WebSocket messages and forwards them to targeted users by user ID. A previous fix for CVE-2026-40911 introduced a strip branch that removes the autoEvalCodeOnHTML field from incoming payloads. The strip logic only inspects the msg key of the decoded JSON object.

The relay function msgToResourceId() prefers $msg['json'] over $msg['msg'] when constructing the outbound payload. Attackers exploit this ordering mismatch by nesting autoEvalCodeOnHTML inside the top-level json field. The sanitizer never inspects that path, so the payload reaches the recipient unchanged. The receiving client passes the value to eval(), executing attacker-controlled JavaScript in the authenticated user's browser context.

Root Cause

The root cause is inconsistent field selection between the sanitization routine and the relay routine. The strip function and the dispatch function disagree on which key holds the authoritative message body. This logic gap allows the attacker to place the dangerous field on a path the sanitizer ignores.

Attack Vector

The attack requires no authentication. An attacker fetches a valid WebSocket token from the public endpoint plugin/YPTSocket/getWebSocket.json.php. The attacker then opens a WebSocket connection to the server, supplies a to_users_id value identifying the target, and sends a JSON message with autoEvalCodeOnHTML nested under a top-level json field. The server relays the payload verbatim, and the target client evaluates the injected code on receipt. Refer to the GitHub Security Advisory GHSA-ghcv-22jf-vfxm for further technical context.

Detection Methods for CVE-2026-43874

Indicators of Compromise

  • Unauthenticated requests to plugin/YPTSocket/getWebSocket.json.php followed by WebSocket connections from the same client.
  • WebSocket frames containing the string autoEvalCodeOnHTML nested under a json key rather than msg.
  • Unexpected outbound HTTP requests originating from authenticated user sessions shortly after WebSocket traffic.

Detection Strategies

  • Inspect WebSocket payloads at the proxy or WAF layer for the literal autoEvalCodeOnHTML token outside expected field paths.
  • Correlate token issuance from getWebSocket.json.php with the source IP of subsequent WebSocket frames to flag anonymous senders.
  • Hunt web server access logs for clients pulling WebSocket tokens without prior session cookies or referer activity.

Monitoring Recommendations

  • Enable verbose logging on the YPTSocket plugin to capture relayed message structure and to_users_id targeting patterns.
  • Monitor authenticated user browsers for anomalous JavaScript execution, such as unexpected fetch() calls to admin endpoints.
  • Alert on bursts of WebSocket messages addressed to high-privilege account IDs from a single source.

How to Mitigate CVE-2026-43874

Immediate Actions Required

  • Upgrade AVideo to a build that includes commit 9f3006f9a89a34daa67a83c6ad35f450cb91fcce.
  • Restrict network access to the WebSocket endpoint and plugin/YPTSocket/getWebSocket.json.php while patching is in progress.
  • Force logout of active sessions after applying the patch to invalidate any pre-existing tokens.

Patch Information

The maintainers shipped an updated fix in commit 9f3006f9a89a34daa67a83c6ad35f450cb91fcce. The patch aligns the sanitization branch with the relay's field selection so the autoEvalCodeOnHTML payload is stripped regardless of whether it appears under msg or json. Administrators should rebuild and redeploy from the patched source tree or wait for an official release tag that supersedes 29.0.

Workarounds

  • Disable the YPTSocket plugin if WebSocket-driven features are not required in production.
  • Block external access to plugin/YPTSocket/getWebSocket.json.php at the reverse proxy until the patched commit is deployed.
  • Add a WAF rule that drops WebSocket frames containing autoEvalCodeOnHTML anywhere in the payload.
bash
# Example nginx rule blocking unauthenticated token issuance
location = /plugin/YPTSocket/getWebSocket.json.php {
    allow 10.0.0.0/8;
    deny all;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWwbn Avideo

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-94
  • Technical References
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-ghcv-22jf-vfxm
  • Related CVEs
  • CVE-2026-40909: WWBN AVideo RCE Vulnerability

  • CVE-2026-41304: WWBN AVideo RCE Vulnerability

  • CVE-2026-33648: Wwbn Avideo RCE Vulnerability

  • CVE-2026-33647: Wwbn Avideo RCE 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