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

CVE-2026-33723: Wwbn Avideo SQLi Vulnerability

CVE-2026-33723 is a SQL injection flaw in Wwbn Avideo that allows authenticated attackers to extract sensitive database information. This post covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33723 Overview

CVE-2026-33723 is a SQL Injection vulnerability affecting WWBN AVideo, an open source video platform. In versions up to and including 26.0, the Subscribe::save() method in objects/subscribe.php concatenates the $this->users_id property directly into an INSERT SQL query without sanitization or parameterized binding. This property originates from $_POST['user_id'] in both subscribe.json.php and subscribeNotify.json.php. An authenticated attacker can inject arbitrary SQL to extract sensitive data from any database table, including password hashes, API keys, and encryption salts.

Critical Impact

Authenticated attackers can exploit this SQL Injection to extract sensitive database contents including password hashes, API keys, and encryption salts from the AVideo platform.

Affected Products

  • WWBN AVideo versions up to and including 26.0
  • All installations using the vulnerable Subscribe::save() method
  • Systems exposing subscribe.json.php or subscribeNotify.json.php endpoints

Discovery Timeline

  • 2026-03-23 - CVE CVE-2026-33723 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33723

Vulnerability Analysis

This SQL Injection vulnerability exists in the Subscribe class within the objects/subscribe.php file. The vulnerable code path is triggered when processing subscription requests through the subscribe.json.php or subscribeNotify.json.php endpoints. The root issue is that user-controlled input from $_POST['user_id'] flows directly into the $this->users_id property, which is then concatenated into an SQL INSERT statement without any form of sanitization or use of parameterized queries.

An authenticated attacker exploiting this vulnerability can craft malicious SQL payloads that, when processed by the save() method, execute arbitrary database queries. This enables extraction of sensitive data including user credentials (password hashes), API keys, encryption salts, and other confidential information stored in the database. The attack requires only low privileges (authenticated user) and can be executed remotely over the network without any user interaction.

Root Cause

The root cause is improper input validation and the use of string concatenation to build SQL queries (CWE-89: Improper Neutralization of Special Elements used in an SQL Command). The Subscribe::save() method directly embeds the $this->users_id value into the SQL INSERT statement using PHP string interpolation ('{$this->users_id}') instead of using prepared statements with parameterized queries. This allows attackers to break out of the intended SQL context and inject their own SQL commands.

Attack Vector

The attack is network-based and requires an authenticated user session. An attacker sends a crafted HTTP POST request to either subscribe.json.php or subscribeNotify.json.php with a malicious user_id parameter containing SQL injection payload. The payload is stored in the $this->users_id property and subsequently concatenated into the INSERT query, allowing the attacker to modify the query logic or perform UNION-based attacks to exfiltrate data.

php
// Vulnerable code (before patch):
$sql = "INSERT INTO subscribes ( users_id, email,status,ip, created, modified, subscriber_users_id) VALUES ('{$this->users_id}','{$this->email}', '{$this->status}', '" . getRealIpAddr() . "',now(), now(), '$this->subscriber_users_id')";
$saved = sqlDAL::writeSql($sql);

// Fixed code (after patch - commit 36dfae22059fbd66fd34bbc5568a838fc0efd66c):
$sql = "INSERT INTO subscribes (users_id, email, status, ip, created, modified, subscriber_users_id) VALUES (?, ?, ?, ?, now(), now(), ?)";
$saved = sqlDAL::writeSql($sql, "isssi", [
    intval($this->users_id),
    (string) $this->email,
    (string) $this->status,
    getRealIpAddr(),
    intval($this->subscriber_users_id),
]);

Source: GitHub Commit Changes

Detection Methods for CVE-2026-33723

Indicators of Compromise

  • Unusual or malformed user_id parameters in HTTP POST requests to subscribe.json.php or subscribeNotify.json.php
  • Database query logs showing abnormal SQL syntax patterns such as UNION SELECT, single quotes, or comment sequences in INSERT statements
  • Unexpected database errors related to the subscribes table

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect SQL injection patterns in POST parameters targeting subscription endpoints
  • Monitor database query logs for INSERT statements with suspicious payloads in the users_id field
  • Deploy intrusion detection signatures to identify common SQL injection attack patterns in HTTP traffic to AVideo installations

Monitoring Recommendations

  • Enable detailed logging for all requests to subscribe.json.php and subscribeNotify.json.php endpoints
  • Configure database audit logging to track all queries against the subscribes table
  • Set up alerting for authentication anomalies combined with unusual subscription activity patterns

How to Mitigate CVE-2026-33723

Immediate Actions Required

  • Update WWBN AVideo to a version containing commit 36dfae22059fbd66fd34bbc5568a838fc0efd66c or later
  • Review database logs for signs of exploitation and check for unauthorized data access
  • Rotate sensitive credentials (password hashes, API keys, encryption salts) if exploitation is suspected

Patch Information

The vulnerability has been addressed in commit 36dfae22059fbd66fd34bbc5568a838fc0efd66c. The fix refactors the save() method in the Subscribe class to use prepared statements with parameterized queries instead of direct string concatenation. This ensures that user input is properly bound as data rather than being interpreted as SQL code. Review the GitHub Commit Changes and GitHub Security Advisory GHSA-ffr8-fxhv-fv8h for complete patch details.

Workarounds

  • Restrict access to subscribe.json.php and subscribeNotify.json.php endpoints at the web server level until patching is complete
  • Implement input validation at the web server or reverse proxy level to reject non-numeric user_id values
  • Deploy a Web Application Firewall with SQL injection detection rules in front of the AVideo installation
bash
# Example nginx configuration to restrict access to vulnerable endpoints
location ~ ^/(subscribe\.json\.php|subscribeNotify\.json\.php)$ {
    # Allow only trusted IP ranges until patched
    allow 192.168.1.0/24;
    deny all;
}

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

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.02%

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

  • GitHub Security Advisory GHSA-ffr8-fxhv-fv8h
  • Related CVEs
  • CVE-2026-34374: Wwbn Avideo SQLi Vulnerability

  • CVE-2026-33767: Wwbn Avideo SQL Injection Vulnerability

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