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

CVE-2026-34374: Wwbn Avideo SQLi Vulnerability

CVE-2026-34374 is a SQL injection flaw in Wwbn Avideo affecting the Live_schedule::keyExists() method. Attackers can exploit this during RTMP authentication. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-34374 Overview

A critical SQL Injection vulnerability exists in WWBN AVideo, an open source video platform. In versions up to and including 26.0, the Live_schedule::keyExists() method constructs a SQL query by interpolating a stream key directly into the query string without parameterization. This method is called as a fallback from LiveTransmition::keyExists() when the initial parameterized lookup returns no results. Although the calling function correctly uses parameterized queries for its own lookup, the fallback path to Live_schedule::keyExists() undoes this protection entirely.

This vulnerability is distinct from GHSA-pvw4-p2jm-chjm, which covers SQL injection via the live_schedule_id parameter in the reminder function. This finding specifically targets the stream key lookup path used during RTMP publish authentication.

Critical Impact

Unauthenticated attackers can exploit this SQL injection vulnerability during RTMP publish authentication to extract sensitive data from the database or modify its contents, potentially compromising the entire video platform.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • All deployments using RTMP publish authentication functionality
  • Self-hosted and cloud instances running vulnerable versions

Discovery Timeline

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

Technical Details for CVE-2026-34374

Vulnerability Analysis

This SQL Injection vulnerability (CWE-89) affects the stream key authentication mechanism in WWBN AVideo. The vulnerability exists in the Live_schedule::keyExists() method, which is invoked as a secondary lookup when the primary parameterized query in LiveTransmition::keyExists() fails to find a matching stream key.

The fundamental issue is an inconsistent security pattern within the codebase. While the primary lookup function implements proper parameterized queries to prevent SQL injection, the fallback code path directly concatenates user-supplied stream key data into SQL queries without sanitization or parameterization.

The vulnerability can be exploited remotely without authentication during the RTMP publish authentication process. Successful exploitation could allow attackers to read sensitive database contents including user credentials, session tokens, and platform configuration data. Additionally, attackers may be able to modify or delete database records, potentially leading to complete platform compromise.

Root Cause

The root cause is improper input validation and inconsistent use of parameterized queries. The Live_schedule::keyExists() method directly interpolates the stream key parameter into a SQL query string rather than using prepared statements with parameter binding. This occurs despite the calling function (LiveTransmition::keyExists()) implementing proper parameterization for its own database queries, creating a false sense of security in the authentication flow.

Attack Vector

The attack vector is network-based and requires no authentication. An attacker can craft a malicious stream key containing SQL injection payloads and submit it during the RTMP publish authentication process. When the primary lookup returns no results, the system falls back to the vulnerable Live_schedule::keyExists() method, executing the attacker's injected SQL commands against the database.

The attacker can leverage standard SQL injection techniques including UNION-based injection to extract data, boolean-based blind injection for data enumeration, and time-based blind injection when direct output is not visible. As of time of publication, no patched versions are available.

Detection Methods for CVE-2026-34374

Indicators of Compromise

  • Anomalous SQL error messages in application logs related to Live_schedule or stream key lookups
  • Unusual database query patterns or unexpected query execution times during RTMP authentication
  • Failed login attempts with stream keys containing SQL syntax characters (e.g., single quotes, UNION statements, comment markers)
  • Database audit logs showing unexpected SELECT, UPDATE, or DELETE operations on user or configuration tables

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block SQL injection patterns in RTMP stream key parameters
  • Enable detailed database query logging and monitor for queries originating from the Live_schedule::keyExists() function containing suspicious patterns
  • Deploy intrusion detection rules to identify SQL injection payloads in network traffic targeting the RTMP authentication endpoint
  • Configure application-level monitoring to alert on SQL errors or exceptions during stream key validation

Monitoring Recommendations

  • Review database query logs for any queries containing UNION, SELECT, or comment syntax within stream key values
  • Monitor RTMP authentication endpoints for high volumes of failed authentication attempts
  • Implement real-time alerting for SQL syntax errors occurring in the live streaming authentication modules
  • Track database response times for anomalies that may indicate time-based SQL injection attempts

How to Mitigate CVE-2026-34374

Immediate Actions Required

  • Restrict network access to RTMP authentication endpoints to trusted IP ranges where possible
  • Implement a Web Application Firewall with SQL injection detection rules in front of the AVideo application
  • Consider temporarily disabling the live streaming functionality if not critical to operations until a patch is available
  • Review database permissions to ensure the application database user has minimal required privileges

Patch Information

As of time of publication, no patched versions are available from the vendor. Organizations should monitor the GitHub Security Advisory for updates on patch availability. In the interim, apply the workarounds and mitigations described below to reduce risk.

Workarounds

  • Deploy a reverse proxy or WAF to filter and block requests containing SQL injection patterns in stream key parameters
  • Implement input validation at the application layer to reject stream keys containing SQL metacharacters before they reach the vulnerable code path
  • Apply network segmentation to limit direct access to the AVideo application and its database
  • If source code modification is possible, update the Live_schedule::keyExists() method to use parameterized queries consistent with the calling function
bash
# Example WAF rule configuration (ModSecurity)
# Block SQL injection patterns in RTMP stream key authentication
SecRule ARGS:key "@detectSQLi" "id:1001,phase:2,deny,status:403,log,msg:'SQL Injection attempt detected in stream key'"
SecRule ARGS:key "@rx (?i)(union|select|insert|update|delete|drop|--|;)" "id:1002,phase:2,deny,status:403,log,msg:'SQL keywords detected in stream key'"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechWwbn Avideo

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33767: Wwbn Avideo SQL Injection Vulnerability

  • CVE-2026-33770: WWBN AVideo SQL Injection Vulnerability

  • CVE-2026-33723: Wwbn Avideo SQLi Vulnerability

  • CVE-2026-33651: WWBN AVideo SQL Injection 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