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

CVE-2026-33352: WWBN AVideo SQL Injection Vulnerability

CVE-2026-33352 is an unauthenticated SQL injection flaw in WWBN AVideo that allows attackers to manipulate database queries. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33352 Overview

CVE-2026-33352 is a critical unauthenticated SQL injection vulnerability affecting WWBN AVideo, an open source video platform. The vulnerability exists in objects/category.php within the getAllCategories() method, where the doNotShowCats request parameter is inadequately sanitized. The sanitization only strips single-quote characters using str_replace("'", '', ...), which can be trivially bypassed using a backslash escape technique to shift SQL string boundaries. This parameter is not covered by any of the application's global input filters in objects/security.php, allowing attackers to inject arbitrary SQL commands without authentication.

Critical Impact

Unauthenticated attackers can exploit this SQL injection vulnerability to extract sensitive data from the database, modify or delete records, and potentially achieve full database compromise on affected WWBN AVideo installations prior to version 26.0.

Affected Products

  • WWBN AVideo versions prior to 26.0
  • All installations using the vulnerable objects/category.php component

Discovery Timeline

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

Technical Details for CVE-2026-33352

Vulnerability Analysis

This SQL injection vulnerability (CWE-89) stems from insufficient input validation in the category management functionality of WWBN AVideo. The getAllCategories() method in objects/category.php accepts user-controlled input through the doNotShowCats parameter, which is intended to filter categories from query results. The application attempts to sanitize this input by stripping single-quote characters, a common but fundamentally flawed approach to preventing SQL injection.

The backslash escape technique allows attackers to circumvent this protection by manipulating SQL string boundaries. When a backslash is placed before the stripped quote location, it escapes the subsequent character in the SQL statement, effectively breaking the intended query structure and allowing injection of arbitrary SQL commands.

Root Cause

The root cause is inadequate input sanitization combined with missing coverage by global security filters. The application relies on a naive single-quote removal technique (str_replace("'", '', ...)) rather than using parameterized queries or prepared statements. Additionally, the doNotShowCats parameter is not protected by the application's global input filters defined in objects/security.php, creating a gap in the security architecture that exposes this attack surface.

Attack Vector

The attack can be executed remotely over the network without any authentication requirements. An attacker can craft malicious HTTP requests containing specially formatted payloads in the doNotShowCats parameter. By utilizing backslash escape sequences, the attacker can shift SQL string boundaries and inject arbitrary SQL commands that will be executed against the backend database.

The vulnerability is exploited by sending a crafted request to endpoints that call the getAllCategories() method with attacker-controlled doNotShowCats values. The backslash technique works by placing a backslash character that escapes whatever character follows the position where the single quote was stripped, allowing the attacker to break out of the string context and append malicious SQL. See the GitHub Security Advisory for technical details.

Detection Methods for CVE-2026-33352

Indicators of Compromise

  • Unusual or malformed HTTP requests targeting objects/category.php or endpoints calling getAllCategories()
  • Requests containing backslash characters combined with SQL keywords in the doNotShowCats parameter
  • Database error messages in application logs indicating malformed SQL queries
  • Unexpected database query patterns or data exfiltration attempts in database logs

Detection Strategies

  • Implement web application firewall (WAF) rules to detect SQL injection patterns including backslash escape sequences
  • Monitor HTTP request logs for suspicious doNotShowCats parameter values containing SQL syntax or escape characters
  • Configure database auditing to flag unusual query patterns from the AVideo application context
  • Deploy intrusion detection systems (IDS) with signatures for SQL injection attack patterns

Monitoring Recommendations

  • Enable detailed access logging for web server endpoints serving the AVideo application
  • Configure alerting on database queries containing UNION, SELECT, or other SQL keywords from user-supplied parameters
  • Monitor for increased error rates in application logs that may indicate exploitation attempts
  • Review database connection logs for anomalous query execution patterns

How to Mitigate CVE-2026-33352

Immediate Actions Required

  • Upgrade WWBN AVideo to version 26.0 or later immediately
  • If immediate upgrade is not possible, restrict access to the application using network-level controls
  • Implement WAF rules to block requests with suspicious patterns in the doNotShowCats parameter
  • Review database logs for evidence of prior exploitation

Patch Information

WWBN has released version 26.0 which addresses this vulnerability. The fix is available in commit 206d38e97b8c854771bb2907b13f9f36e8bcf874. Organizations should upgrade to version 26.0 or apply the patch as soon as possible. Additional details are available in the GitHub Security Advisory GHSA-mcj5-6qr4-95fj.

Workarounds

  • Implement a reverse proxy or WAF rule to block requests containing backslash characters or SQL keywords in the doNotShowCats parameter
  • Restrict network access to the AVideo application to trusted IP addresses only
  • If possible, temporarily disable the category filtering functionality until the patch can be applied
  • Monitor and audit all database activity for signs of SQL injection exploitation
bash
# Example WAF rule to block suspicious doNotShowCats parameter patterns
# ModSecurity rule example
SecRule ARGS:doNotShowCats "@rx (?i)(\\x5c|union|select|insert|update|delete|drop)" \
    "id:2026333520,phase:2,deny,status:403,msg:'Potential SQL injection attempt in doNotShowCats parameter'"

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.8

  • EPSS Probability0.03%

  • 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
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory
  • 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-33723: Wwbn Avideo SQLi 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