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

CVE-2026-33237: Wwbn Avideo SSRF Vulnerability

CVE-2026-33237 is a server-side request forgery flaw in Wwbn Avideo that allows admins to exploit the Scheduler plugin to access internal network resources. This post covers technical details, affected versions, and patches.

Published: March 27, 2026

CVE-2026-33237 Overview

WWBN AVideo is an open source video platform that contains a Server-Side Request Forgery (SSRF) vulnerability in the Scheduler plugin prior to version 26.0. The vulnerability exists in the run() function within plugin/Scheduler/Scheduler.php, where the admin-configurable callbackURL parameter is validated only by isValidURL() (a URL format check) without being passed through the isSSRFSafeURL() function that blocks requests to RFC-1918 private addresses, loopback interfaces, and cloud metadata endpoints.

Critical Impact

An administrator can configure a scheduled task with an internal network callback URL to perform SSRF attacks against cloud infrastructure metadata services (such as AWS IMDSv1 at 169.254.169.254) or internal APIs not otherwise reachable from the internet.

Affected Products

  • WWBN AVideo versions prior to 26.0
  • AVideo Scheduler plugin (plugin/Scheduler/Scheduler.php)
  • Self-hosted AVideo instances with Scheduler plugin enabled

Discovery Timeline

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

Technical Details for CVE-2026-33237

Vulnerability Analysis

This SSRF vulnerability stems from inconsistent input validation across the AVideo codebase. While other AVideo endpoints were recently patched for similar SSRF issues (referenced as GHSA-9x67-f2v7-63rw and GHSA-h39h-7cvg-q7j6), the Scheduler plugin's callback URL handling was overlooked. The url_get_contents() function is called with the admin-supplied callbackURL parameter, which undergoes only basic URL format validation via isValidURL() rather than the more restrictive isSSRFSafeURL() check that enforces protections against internal network access.

The vulnerability requires administrative privileges to exploit, as only authenticated administrators can configure scheduled tasks with arbitrary callback URLs. However, in cloud environments, this can lead to significant security impact through access to cloud metadata services, potentially exposing IAM credentials, instance configuration data, and other sensitive information.

Root Cause

The root cause is missing SSRF protection in the Scheduler plugin's callback URL validation. The isSSRFSafeURL() function, which blocks requests to RFC-1918 private address ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16), loopback addresses (127.0.0.0/8), and cloud metadata endpoints (169.254.169.254), was not applied to the Scheduler's callbackURL parameter despite being implemented for other endpoints.

Attack Vector

The attack is network-based and requires high privileges (admin access). An authenticated administrator can configure a scheduled task with a malicious callbackURL pointing to internal resources such as:

  • Cloud metadata services (e.g., http://169.254.169.254/latest/meta-data/)
  • Internal APIs on private network ranges
  • Local services via loopback addresses
  • Other internal infrastructure not exposed to the internet

The following patch shows the security fix applied in version 26.0:

php
         if (!isValidURL($callBackURL)) {
             return false;
         }
+        if (!isSSRFSafeURL($callBackURL)) {
+            _error_log("Scheduler::run SSRF protection blocked callbackURL: " . $callBackURL);
+            return false;
+        }
         if (empty($_executeSchelude[$callBackURL])) {
             $callBackURL = addQueryStringParameter($callBackURL, 'token', getToken(60));
             $callBackURL = addQueryStringParameter($callBackURL, 'scheduler_commands_id', $scheduler_commands_id);

Source: GitHub Commit Update

Detection Methods for CVE-2026-33237

Indicators of Compromise

  • Scheduled tasks configured with callback URLs pointing to internal IP ranges (10.x.x.x, 172.16.x.x-172.31.x.x, 192.168.x.x)
  • Callback URLs targeting cloud metadata endpoints (169.254.169.254)
  • Unusual outbound requests from the AVideo server to internal network resources
  • Log entries in error logs containing blocked callback URLs (after patching)

Detection Strategies

  • Monitor AVideo admin activity logs for creation or modification of scheduled tasks with internal network URLs
  • Implement network egress filtering to detect and alert on requests to metadata endpoints from web application servers
  • Review database entries in the scheduler_commands table for suspicious callbackURL values
  • Deploy web application firewall (WAF) rules to detect SSRF patterns in request parameters

Monitoring Recommendations

  • Enable verbose logging for the Scheduler plugin to capture all callback URL requests
  • Configure alerts for any outbound connections from the AVideo server to RFC-1918 private address ranges
  • Monitor for unexpected access to cloud provider metadata services from application servers
  • Audit administrative actions related to scheduled task configuration

How to Mitigate CVE-2026-33237

Immediate Actions Required

  • Upgrade WWBN AVideo to version 26.0 or later immediately
  • Review all existing scheduled tasks for suspicious callback URLs targeting internal networks
  • Implement network-level egress filtering to block requests to cloud metadata endpoints and internal networks from the web server
  • Audit administrative access and remove unnecessary admin privileges

Patch Information

WWBN has released version 26.0 which addresses this vulnerability by adding the isSSRFSafeURL() validation check to the Scheduler plugin's callback URL processing. The fix is available in commit df926e500580c2a1e3c70351f0c30f4e15c0fd83. For detailed information, refer to the GitHub Security Advisory.

Workarounds

  • Restrict administrative access to trusted users only until the patch can be applied
  • Implement network segmentation to prevent the AVideo server from reaching internal services
  • Deploy instance metadata service protection (IMDSv2 on AWS) to require session tokens for metadata access
  • Use a firewall or proxy to block outbound requests from the AVideo server to private IP ranges and metadata endpoints
bash
# Example iptables rules to block SSRF targets from the AVideo server
# Block cloud metadata endpoint
iptables -A OUTPUT -d 169.254.169.254 -j DROP

# Block RFC-1918 private ranges (adjust based on legitimate internal needs)
iptables -A OUTPUT -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -j DROP

# Block loopback from web application context
iptables -A OUTPUT -d 127.0.0.0/8 -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 Score5.5

  • EPSS Probability0.04%

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-39368: WWBN AVideo SSRF Vulnerability

  • CVE-2026-34740: Wwbn Avideo SSRF Vulnerability

  • CVE-2026-33766: Wwbn Avideo SSRF Vulnerability

  • CVE-2026-33294: Wwbn Avideo SSRF 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