Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-41060

CVE-2026-41060: WWBN AVideo SSRF Vulnerability

CVE-2026-41060 is an SSRF flaw in WWBN AVideo that allows attackers to bypass security protections and reach arbitrary ports on the server. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 23, 2026

CVE-2026-41060 Overview

WWBN AVideo is an open source video platform that contains a Server-Side Request Forgery (SSRF) vulnerability in versions 29.0 and below. The isSSRFSafeURL() function in objects/functions.php contains a same-domain shortcircuit (lines 4290-4296) that allows any URL whose hostname matches webSiteRootURL to bypass all SSRF protections. Because the check compares only the hostname and ignores the port, an attacker can reach arbitrary ports on the AVideo server by using the site's public hostname with a non-standard port. The response body is saved to a web-accessible path, enabling full exfiltration of internal service data.

Critical Impact

Authenticated attackers can bypass SSRF protections to access internal services on arbitrary ports, with response data saved to web-accessible paths enabling complete data exfiltration.

Affected Products

  • WWBN AVideo version 29.0 and below
  • AVideo installations using the vulnerable isSSRFSafeURL() function in objects/functions.php

Discovery Timeline

  • 2026-04-21 - CVE CVE-2026-41060 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-41060

Vulnerability Analysis

This vulnerability is classified as CWE-918 (Server-Side Request Forgery). The flaw exists in the SSRF protection mechanism implemented in AVideo's isSSRFSafeURL() function. The function was designed to prevent SSRF attacks by validating URLs before making server-side requests. However, the implementation contains a critical logic flaw in its same-domain bypass logic.

When a URL is submitted, the function checks if the hostname matches the configured webSiteRootURL. If the hostnames match, the function immediately returns true, allowing the request without further validation. The fundamental issue is that this check only validates the hostname component while completely ignoring the port number.

This oversight allows authenticated attackers to craft malicious URLs using the legitimate site hostname but targeting arbitrary ports (e.g., http://legitimate-site.com:6379/ to access a Redis instance). Since the response body is saved to a web-accessible path, attackers can retrieve sensitive data from internal services that would normally be unreachable from the internet.

Root Cause

The root cause is an incomplete same-origin validation in the isSSRFSafeURL() function. The original code only compared hostnames using parse_url($global['webSiteRootURL'], PHP_URL_HOST) and parse_url($url, PHP_URL_HOST), without also comparing port numbers. This violates the same-origin policy principle where origin is defined by protocol, hostname, AND port. The missing port validation creates a bypass condition that effectively nullifies the SSRF protection for same-host requests.

Attack Vector

The attack vector is network-based and requires low-privilege authentication. An attacker with a valid user account on the AVideo platform can exploit this vulnerability by:

  1. Identifying the target AVideo instance's public hostname
  2. Crafting a URL with the same hostname but a different port targeting an internal service
  3. Submitting this URL through functionality that invokes isSSRFSafeURL()
  4. Retrieving the response from the web-accessible path where it was saved
php
 
     $host = strtolower($host);
 
-    // Allow loopback/private IPs if the URL points to the same domain as webSiteRootURL
+    // Allow requests to the same origin as webSiteRootURL (hostname + port must both match).
+    // Checking hostname only is insufficient: an attacker can reach arbitrary internal ports
+    // on the same host by using the site's public hostname with a non-standard port.
     if (!empty($global['webSiteRootURL'])) {
-        $siteHost = strtolower(parse_url($global['webSiteRootURL'], PHP_URL_HOST));
-        if ($host === $siteHost) {
-            _error_log("isSSRFSafeURL: allowing same-domain request to {$host} (matches webSiteRootURL)");
+        $siteHost   = strtolower(parse_url($global['webSiteRootURL'], PHP_URL_HOST));
+        $siteScheme = strtolower(parse_url($global['webSiteRootURL'], PHP_URL_SCHEME) ?: 'http');
+        $sitePort   = (int)(parse_url($global['webSiteRootURL'], PHP_URL_PORT) ?: ($siteScheme === 'https' ? 443 : 80));
+
+        $urlScheme = strtolower(parse_url($url, PHP_URL_SCHEME) ?: 'http');
+        $urlPort   = (int)(parse_url($url, PHP_URL_PORT) ?: ($urlScheme === 'https' ? 443 : 80));
+
+        if ($host === $siteHost && $urlPort === $sitePort) {
+            _error_log("isSSRFSafeURL: allowing same-origin request to {$host}:{$urlPort} (matches webSiteRootURL)");
             return true;
         }
     }

Source: GitHub Commit a0156a6

Detection Methods for CVE-2026-41060

Indicators of Compromise

  • HTTP requests from the AVideo server to localhost or the server's own hostname on non-standard ports (e.g., 6379, 27017, 9200, 11211)
  • Log entries in AVideo showing isSSRFSafeURL: allowing same-domain request messages with unusual port numbers
  • Unexpected files appearing in web-accessible directories containing data from internal services
  • Network connections from the web server process to internal services that should not be accessed by the application

Detection Strategies

  • Monitor web server logs for URL submissions containing the site's hostname with non-standard ports in URL parameters
  • Implement network segmentation monitoring to detect connections from the AVideo server to internal service ports
  • Review PHP error logs for isSSRFSafeURL log entries with port numbers that differ from the standard HTTP/HTTPS ports
  • Deploy file integrity monitoring on web-accessible directories to detect unauthorized file creation

Monitoring Recommendations

  • Configure alerts for outbound connections from the AVideo application to sensitive internal ports (database ports, cache servers, etc.)
  • Implement log analysis rules to flag any URL processing involving the server's own hostname with non-standard ports
  • Monitor authentication logs for accounts making repeated requests that trigger SSRF validation logic
  • Enable verbose logging for the isSSRFSafeURL() function to capture all URL validation attempts

How to Mitigate CVE-2026-41060

Immediate Actions Required

  • Upgrade WWBN AVideo to a version containing commit a0156a6398362086390d949190f9d52a823000ba or later
  • Review web-accessible directories for any suspicious files that may have been created through exploitation
  • Audit user activity logs for potential exploitation attempts targeting internal services
  • Consider implementing network-level restrictions to prevent the web server from accessing internal service ports

Patch Information

The vulnerability is fixed in commit a0156a6398362086390d949190f9d52a823000ba. The patch modifies the isSSRFSafeURL() function in objects/functions.php to enforce proper same-origin validation by comparing both hostname AND port. The fix extracts the port from both the configured webSiteRootURL and the submitted URL, defaulting to standard ports (80 for HTTP, 443 for HTTPS) when not explicitly specified. For more details, see the GitHub Security Advisory and the patch commit.

Workarounds

  • Implement firewall rules to restrict outbound connections from the AVideo server to only necessary external services
  • Use a web application firewall (WAF) to block requests containing the server's hostname with non-standard ports
  • Disable or restrict functionality that allows users to submit arbitrary URLs for server-side processing
  • Deploy network segmentation to isolate internal services from the web application tier
bash
# Example iptables rules to restrict outbound connections from web server
# Block connections to common internal service ports
iptables -A OUTPUT -p tcp -m owner --uid-owner www-data --dport 6379 -j DROP  # Redis
iptables -A OUTPUT -p tcp -m owner --uid-owner www-data --dport 27017 -j DROP # MongoDB
iptables -A OUTPUT -p tcp -m owner --uid-owner www-data --dport 9200 -j DROP  # Elasticsearch
iptables -A OUTPUT -p tcp -m owner --uid-owner www-data --dport 11211 -j DROP # Memcached

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechAvideo

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.03%

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

  • GitHub Security Advisory GHSA-j432
  • Related CVEs
  • CVE-2026-39370: WWBN AVideo SSRF Bypass Vulnerability

  • CVE-2026-41063: WWBN AVideo XSS Vulnerability

  • CVE-2026-41058: AVideo Path Traversal Vulnerability

  • CVE-2026-40925: 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