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

CVE-2026-33294: Wwbn Avideo SSRF Vulnerability

CVE-2026-33294 is an SSRF flaw in Wwbn Avideo that allows authenticated attackers to access internal network resources through unprotected thumbnail URLs. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33294 Overview

CVE-2026-33294 is a Server-Side Request Forgery (SSRF) vulnerability affecting WWBN AVideo, an open source video platform. The vulnerability exists in the BulkEmbed plugin's save endpoint (plugin/BulkEmbed/save.json.php), which fetches user-supplied thumbnail URLs via url_get_contents() without implementing SSRF protection. While six other URL-fetching endpoints in AVideo were hardened with isSSRFSafeURL(), this particular code path was overlooked, allowing authenticated attackers to force the server to make HTTP requests to internal network resources and retrieve responses by viewing saved video thumbnails.

Critical Impact

Authenticated attackers can leverage this SSRF vulnerability to access internal network resources, potentially exposing sensitive services, cloud metadata endpoints, and internal APIs that should not be accessible from the internet.

Affected Products

  • WWBN AVideo versions prior to 26.0
  • AVideo BulkEmbed plugin (all versions before the fix)
  • Self-hosted AVideo installations with BulkEmbed plugin enabled

Discovery Timeline

  • 2026-03-22 - CVE-2026-33294 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-33294

Vulnerability Analysis

This vulnerability is classified under CWE-918 (Server-Side Request Forgery). The root issue stems from inconsistent security controls applied across the AVideo codebase. During a security hardening effort, the development team implemented SSRF protection using isSSRFSafeURL() across six URL-fetching endpoints throughout the application. However, the BulkEmbed plugin's save endpoint at plugin/BulkEmbed/save.json.php was missed during this process.

The vulnerability requires authentication to exploit, limiting the attack surface to users with valid credentials on the AVideo platform. Once authenticated, an attacker can supply arbitrary URLs as thumbnail values, causing the server to fetch content from those URLs using the url_get_contents() function without any validation or filtering.

Root Cause

The root cause is a missing security check in the BulkEmbed plugin's save functionality. While the application maintains a security function isSSRFSafeURL() specifically designed to prevent SSRF attacks, this validation was not applied to the thumbnail URL parameter in the save.json.php endpoint. This inconsistency in applying security controls across the codebase allowed the SSRF vulnerability to exist despite other endpoints being properly protected.

Attack Vector

The attack vector requires network access and authenticated user privileges. An attacker with valid credentials can exploit this vulnerability by:

  1. Authenticating to the AVideo platform with any valid user account
  2. Accessing the BulkEmbed plugin's save functionality
  3. Supplying a malicious URL pointing to internal network resources as the thumbnail parameter
  4. The server fetches the content from the attacker-specified URL without validation
  5. The attacker retrieves the internal resource content by viewing the saved video thumbnail

This allows reconnaissance of internal networks, access to cloud metadata services (such as AWS IMDSv1 at http://169.254.169.254/), and interaction with internal APIs that trust requests from the server's IP address.

The vulnerability mechanism involves the url_get_contents() function processing user-supplied thumbnail URLs without the isSSRFSafeURL() validation that protects other endpoints. For technical details, see the GitHub Security Advisory GHSA-66cw-h2mj-j39p.

Detection Methods for CVE-2026-33294

Indicators of Compromise

  • Unusual outbound HTTP requests from the AVideo server to internal IP ranges (10.x.x.x, 172.16.x.x-172.31.x.x, 192.168.x.x)
  • Requests to cloud metadata endpoints (e.g., 169.254.169.254) originating from the AVideo application
  • Suspicious thumbnail URLs containing internal hostnames or IP addresses in the database
  • HTTP requests to localhost or loopback addresses from the BulkEmbed save endpoint

Detection Strategies

  • Monitor web application logs for requests to plugin/BulkEmbed/save.json.php containing internal IP addresses or suspicious URL patterns
  • Implement network-level monitoring to detect outbound connections from the AVideo server to RFC1918 address space
  • Review application logs for failed or unusual URL fetch attempts that may indicate SSRF probing
  • Deploy Web Application Firewall (WAF) rules to detect SSRF payloads in thumbnail URL parameters

Monitoring Recommendations

  • Enable detailed logging for all URL-fetching operations in the AVideo application
  • Set up alerts for any outbound connections from the web server to internal network segments
  • Monitor for access patterns consistent with internal network enumeration or metadata service access
  • Implement egress filtering to restrict the AVideo server's ability to connect to internal resources

How to Mitigate CVE-2026-33294

Immediate Actions Required

  • Upgrade WWBN AVideo to version 26.0 or later immediately
  • If immediate upgrade is not possible, disable the BulkEmbed plugin until patching can be completed
  • Review application logs for any evidence of exploitation attempts
  • Audit existing thumbnail URLs in the database for signs of SSRF attacks

Patch Information

WWBN has released version 26.0 which addresses this vulnerability by applying the isSSRFSafeURL() validation to the BulkEmbed plugin's save endpoint. The fix ensures consistent SSRF protection across all URL-fetching endpoints in the application. The specific commit addressing this issue is available at the GitHub Commit Changes. Additional details can be found in the GitHub Security Advisory GHSA-66cw-h2mj-j39p.

Workarounds

  • Disable the BulkEmbed plugin if not required for operations until the patch can be applied
  • Implement network-level egress filtering to prevent the AVideo server from connecting to internal network ranges
  • Deploy a reverse proxy or WAF rule to filter requests containing internal IP addresses in thumbnail parameters
  • Restrict authentication to trusted users only until the vulnerability is patched
bash
# Example: Network-level mitigation using iptables to block internal network access
# Block outbound connections to RFC1918 private address ranges from web server
iptables -A OUTPUT -d 10.0.0.0/8 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 169.254.169.254 -m owner --uid-owner www-data -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechWwbn Avideo

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

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

  • GitHub Security Advisory GHSA-66cw-h2mj-j39p
  • Related CVEs
  • CVE-2026-34740: Wwbn Avideo SSRF Vulnerability

  • CVE-2026-33766: Wwbn Avideo SSRF Vulnerability

  • CVE-2026-33480: Wwbn Avideo SSRF Vulnerability

  • CVE-2026-33502: WWBN AVideo SSRF Vulnerability Explained
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