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

CVE-2026-43876: WWBN AVideo XSS Vulnerability

CVE-2026-43876 is a cross-site scripting flaw in WWBN AVideo that allows authenticated users to inject malicious HTML into emails sent to subscribers. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43876 Overview

CVE-2026-43876 is a stored HTML injection vulnerability [CWE-79] in WWBN AVideo, an open source video platform. The flaw resides in objects/notifySubscribers.json.php, which accepts the message POST parameter and passes it unsanitized to sendSiteEmail(). The function injects the value into an HTML email template through str_replace on the {message} placeholder and renders it with PHPMailer::msgHTML(). Any authenticated user with upload permission can broadcast arbitrary HTML — including phishing links, tracking pixels, and CSS-based UI spoofing — to every channel subscriber, up to 10,000 recipients per request. The emails arrive from the platform's official contact address with branded styling, granting attacker content the appearance of legitimate platform communication.

Critical Impact

Authenticated channel owners can deliver attacker-controlled HTML inside branded, platform-signed notification emails to up to 10,000 subscribers per invocation, enabling large-scale phishing campaigns.

Affected Products

  • WWBN AVideo versions up to and including 29.0
  • objects/notifySubscribers.json.php endpoint
  • Sites using the default subscriber notification workflow

Discovery Timeline

  • 2026-05-11 - CVE-2026-43876 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43876

Vulnerability Analysis

The vulnerable endpoint objects/notifySubscribers.json.php reads the raw message POST parameter and assigns it directly to the $message variable. That value is then forwarded to sendSiteEmail(), which performs a literal str_replace of the {message} placeholder inside a pre-built HTML template. The composed document is then rendered by PHPMailer::msgHTML(), which treats the entire payload as HTML.

No sanitization layer sits between user input and the rendered email. The endpoint does not call htmlspecialchars, strip_tags, or the project's existing xss_esc helper before substitution. As a result, attacker markup — anchors, images, inline styles, and tracking pixels — is preserved verbatim in outbound mail.

Because the message is wrapped in the configured site logo, title, and From: address, recipient mail clients display the message as an official platform notification. The volume cap of 10,000 recipients per call turns a single authenticated request into a mass-distribution channel.

Root Cause

The root cause is missing output encoding on attacker-controlled input embedded in an HTML email body. The platform's xss_esc() and nl2br() helpers were not invoked on $_POST['message'] before template interpolation. The pipeline assumes trusted plain-text content but delivers it through an HTML renderer.

Attack Vector

Exploitation requires an authenticated account with upload permission on the AVideo instance. The attacker submits a crafted POST request to notifySubscribers.json.php with HTML-bearing content in the message field. The server then mails the rendered HTML to every subscriber of the attacker's channel, leveraging the platform's outbound reputation and branding.

php
// Patch from objects/notifySubscribers.json.php
$subject = 'Message From Site ' . $config->getWebSiteTitle();
-$message = $_POST['message'];
+$message = (string)($_POST['message'] ?? '');
+// Notifications must be plain text to avoid arbitrary HTML in branded emails.
+$message = nl2br(xss_esc($message));

$resp = sendSiteEmail($to, $subject, $message);

Source: WWBN AVideo commit 078c4342. The fix coerces the input to a string, applies the project's xss_esc() HTML-escape helper, and converts newlines with nl2br() so notifications stay plain text inside the branded template.

Detection Methods for CVE-2026-43876

Indicators of Compromise

  • Outbound emails from the configured site contact address containing unexpected <a>, <img>, or <style> tags inside the {message} block.
  • Spikes in calls to objects/notifySubscribers.json.php from a single authenticated session, especially with large message payloads.
  • Subscriber reports of branded notification emails containing external links to credential-collection or impersonation pages.

Detection Strategies

  • Inspect web access logs for POST requests to notifySubscribers.json.php and flag bodies whose message parameter contains HTML tag patterns such as <a , <img , <script, or href=.
  • Compare outbound mail volume against historical baselines per channel owner to surface broadcasts that approach the 10,000-recipient ceiling.
  • Correlate authenticated upload-permission accounts with sudden notification activity to identify abused or newly created accounts.

Monitoring Recommendations

  • Forward AVideo PHP and web server logs to a centralized analytics platform and alert on the notifySubscribers.json.php endpoint.
  • Mirror outbound SMTP traffic from the AVideo host through a content inspection gateway to identify HTML payloads in notification templates.
  • Track creation and permission changes for accounts granted upload rights, since this is the minimum privilege needed for exploitation.

How to Mitigate CVE-2026-43876

Immediate Actions Required

  • Upgrade WWBN AVideo to the version containing commit 078c4342eb9969a70425a9cdca3eefa7f8a86d53 or later.
  • Audit recent invocations of notifySubscribers.json.php and notify subscribers if malicious HTML was distributed.
  • Review and restrict upload permissions to trusted accounts until the patch is deployed.

Patch Information

The maintainers fixed the issue by sanitizing the message parameter before passing it to sendSiteEmail(). The patched code casts the input to a string, runs it through xss_esc() for HTML escaping, and applies nl2br() to preserve line breaks. Details are available in the GitHub Security Advisory GHSA-g9cm-rxp7-6gv5 and the upstream commit.

Workarounds

  • Temporarily disable the subscriber notification feature by restricting access to objects/notifySubscribers.json.php at the web server layer.
  • Apply a WAF rule that rejects POST requests to the endpoint when the message body contains HTML tag characters.
  • Revoke upload permission from non-essential accounts until the patched release is installed.
bash
# Example nginx rule to block HTML payloads to the vulnerable endpoint
location = /objects/notifySubscribers.json.php {
    if ($request_method = POST) {
        if ($request_body ~* "<[a-z!/]") { return 403; }
    }
    proxy_pass http://avideo_backend;
}

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechAvideo

  • SeverityMEDIUM

  • CVSS Score6.4

  • EPSS Probability0.03%

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

  • GitHub Security Advisory GHSA-g9cm-rxp7-6gv5
  • Related CVEs
  • CVE-2026-43878: WWBN AVideo XSS Vulnerability

  • CVE-2026-41063: WWBN AVideo XSS Vulnerability

  • CVE-2026-39367: WWBN AVideo EPG XSS Vulnerability

  • CVE-2026-43885: WWBN AVideo Information Disclosure Flaw
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