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

CVE-2026-28501: WWBN AVideo SQL Injection Vulnerability

CVE-2026-28501 is an unauthenticated SQL injection flaw in WWBN AVideo that bypasses security checks through JSON-formatted requests. This post covers technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2026-28501 Overview

WWBN AVideo is an open source video platform that contains a critical unauthenticated SQL Injection vulnerability. Prior to version 24.0, the application fails to properly sanitize the catName parameter when supplied via a JSON-formatted POST request body within the objects/videos.json.php and objects/video.php components. Because JSON input is parsed and merged into $_REQUEST after global security checks are executed, the payload bypasses existing sanitization mechanisms, allowing attackers to execute arbitrary SQL commands without authentication.

Critical Impact

This unauthenticated SQL Injection vulnerability allows remote attackers to extract sensitive data, modify database contents, or potentially achieve remote code execution through database-specific exploitation techniques, all without requiring any authentication.

Affected Products

  • WWBN AVideo versions prior to 24.0
  • objects/videos.json.php component
  • objects/video.php component

Discovery Timeline

  • 2026-03-06 - CVE-2026-28501 published to NVD
  • 2026-03-09 - Last updated in NVD database

Technical Details for CVE-2026-28501

Vulnerability Analysis

This SQL Injection vulnerability (CWE-89) stems from a fundamental flaw in how the AVideo application processes user input from JSON-formatted POST requests. The vulnerability exists because the application's security architecture performs global input sanitization on the $_REQUEST superglobal before JSON payloads are parsed and merged into it. This race condition in the input processing pipeline allows attackers to inject malicious SQL statements through the catName parameter after security checks have already been completed.

The affected endpoints objects/videos.json.php and objects/video.php accept JSON-encoded data via POST requests, and the parsed values are directly used in SQL queries without proper escaping or parameterization. This architectural oversight creates a bypass of the existing XSS and SQL injection protections implemented elsewhere in the codebase.

Root Cause

The root cause is improper input validation where JSON input parsing occurs after global security sanitization checks have been executed. When the application merges JSON-parsed data into $_REQUEST, the values bypass the xss_esc() function and are not passed through mysqli->real_escape_string() before being used in SQL queries. This timing issue in the input processing pipeline creates a window where unsanitized data reaches the database layer.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can craft a malicious JSON POST request containing SQL injection payloads in the catName parameter. The payload is sent directly to the vulnerable endpoints and processed without sanitization, allowing the attacker to manipulate SQL queries executed by the application.

The following patch from the security fix demonstrates the proper implementation of SQL escaping that was missing:

php
         if (!empty($_GET['q'])) {
             global $global;
             $search = strtolower(xss_esc($_GET['q']));
+            $search = $global['mysqli']->real_escape_string($search);
 
             $like = [];
             $searchFields = static::getSearchFieldsNames();

Source: GitHub Commit Reference

The fix adds mysqli->real_escape_string() to properly sanitize user input before it is used in SQL queries.

Detection Methods for CVE-2026-28501

Indicators of Compromise

  • Unusual SQL error messages in application logs originating from objects/videos.json.php or objects/video.php
  • HTTP POST requests with JSON bodies containing SQL keywords (UNION, SELECT, OR 1=1, etc.) in the catName parameter
  • Unexpected database query patterns or data exfiltration attempts in database audit logs
  • Authentication bypass attempts or unauthorized data access patterns

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect JSON-encoded SQL injection payloads targeting the catName parameter
  • Monitor HTTP access logs for POST requests to /objects/videos.json.php and /objects/video.php with suspicious JSON content
  • Enable database query logging and alert on queries containing injection signatures from the affected endpoints
  • Deploy intrusion detection signatures for SQL injection patterns in JSON request bodies

Monitoring Recommendations

  • Enable verbose logging on the AVideo application to capture all requests to the affected endpoints
  • Configure database audit logging to track queries originating from the web application
  • Set up alerts for failed or unusual SQL query patterns that may indicate exploitation attempts
  • Monitor for data exfiltration indicators such as large data transfers or unusual database dump operations

How to Mitigate CVE-2026-28501

Immediate Actions Required

  • Upgrade WWBN AVideo to version 24.0 or later immediately
  • If immediate patching is not possible, disable public access to the vulnerable endpoints
  • Review database logs for signs of prior exploitation
  • Consider resetting database credentials if compromise is suspected

Patch Information

The vulnerability has been addressed in WWBN AVideo version 24.0. The fix ensures that all user-supplied input, including JSON-parsed parameters, is properly escaped using mysqli->real_escape_string() before being used in SQL queries. Organizations should upgrade to version 24.0 or later to remediate this vulnerability.

For detailed patch information, see the GitHub Security Advisory GHSA-pv87-r9qf-x56p and the GitHub Release Note 24.0.

Workarounds

  • Implement a reverse proxy or WAF rule to block requests containing SQL injection patterns in JSON bodies to the affected endpoints
  • Restrict access to the affected endpoints (/objects/videos.json.php and /objects/video.php) to trusted IP addresses only
  • Apply the manual patch from commit 0c10be68 if upgrading is not immediately feasible
  • Disable JSON input processing for the affected endpoints until a full upgrade can be completed
bash
# Example: Block access to vulnerable endpoints using nginx
location ~ ^/objects/(videos\.json|video)\.php {
    # Restrict to internal networks only until patched
    allow 10.0.0.0/8;
    allow 192.168.0.0/16;
    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/TechAvideo

  • SeverityCRITICAL

  • CVSS Score9.8

  • 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:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Commit Reference

  • GitHub Release Note 24.0

  • GitHub Security Advisory GHSA-pv87-r9qf-x56p
  • Related CVEs
  • CVE-2026-39369: AVideo Path Traversal Vulnerability

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

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

  • CVE-2026-35180: WWBN AVideo CSRF 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