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

CVE-2026-35448: WWBN AVideo Auth Bypass Vulnerability

CVE-2026-35448 is an authentication bypass flaw in WWBN AVideo that exposes payment order data without authentication. This post covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-35448 Overview

WWBN AVideo is an open source video platform. In versions 26.0 and prior, the BlockonomicsYPT plugin's check.php endpoint returns payment order data for any Bitcoin address without requiring authentication. The endpoint was designed as an AJAX polling helper for the authenticated invoice.php page, but it performs no access control checks of its own. Since Bitcoin addresses are publicly visible on the blockchain, an attacker can query payment records for any address used on the platform.

Critical Impact

Unauthenticated attackers can enumerate and retrieve payment order information for any Bitcoin address used on the AVideo platform, potentially exposing sensitive transaction data and user payment details.

Affected Products

  • WWBN AVideo version 26.0 and prior
  • BlockonomicsYPT plugin for AVideo

Discovery Timeline

  • 2026-04-06 - CVE CVE-2026-35448 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-35448

Vulnerability Analysis

This vulnerability represents a Missing Authorization (CWE-862) flaw in the BlockonomicsYPT plugin for the WWBN AVideo platform. The check.php endpoint was implemented to serve as a helper for the authenticated invoice.php page, providing real-time payment status updates via AJAX polling. However, the developers failed to implement proper access control mechanisms on this endpoint.

The core issue is that check.php accepts Bitcoin address parameters and returns associated payment order data without verifying whether the requesting user has legitimate access to view that information. Since Bitcoin addresses are inherently public (visible on the blockchain), any attacker can systematically query the endpoint with known addresses to extract payment records.

This design flaw allows information disclosure through a broken access control pattern where a secondary endpoint inherits no security properties from its parent context.

Root Cause

The root cause is a missing authorization check in the check.php endpoint of the BlockonomicsYPT plugin. While the parent invoice.php page implements authentication controls, the AJAX helper endpoint was developed without independent access control validation. This represents a common anti-pattern where developers assume that backend endpoints will only be called from authenticated frontend pages, failing to account for direct endpoint access by malicious actors.

Attack Vector

The attack exploits the network-accessible check.php endpoint by submitting arbitrary Bitcoin addresses as query parameters. An attacker can:

  1. Obtain Bitcoin addresses from the public blockchain or through other reconnaissance methods
  2. Query the vulnerable endpoint directly without authentication
  3. Retrieve payment order data associated with each address
  4. Enumerate multiple addresses to build a comprehensive dataset of platform payment activity

The vulnerability can be exploited by sending crafted HTTP requests directly to the check.php endpoint with Bitcoin address parameters. Since the endpoint performs no authentication or authorization checks, it returns payment order data for any valid Bitcoin address that has been used on the platform. Attackers can automate this process to systematically query addresses obtained from the public Bitcoin blockchain. For technical details, see the GitHub Security Advisory.

Detection Methods for CVE-2026-35448

Indicators of Compromise

  • Unusual volume of requests to the /plugin/BlockonomicsYPT/check.php endpoint
  • Requests to check.php from unauthenticated sessions or unknown IP addresses
  • Sequential or automated querying patterns targeting the BlockonomicsYPT plugin endpoints
  • Access logs showing check.php requests without corresponding invoice.php session activity

Detection Strategies

  • Implement web application firewall (WAF) rules to monitor and rate-limit access to the check.php endpoint
  • Configure access logging to capture all requests to BlockonomicsYPT plugin endpoints
  • Deploy anomaly detection for unusual access patterns to payment-related endpoints
  • Monitor for requests containing multiple different Bitcoin address parameters in short timeframes

Monitoring Recommendations

  • Enable detailed access logging for all AVideo plugin endpoints
  • Set up alerts for unauthenticated requests to sensitive payment processing endpoints
  • Implement rate limiting on the BlockonomicsYPT plugin endpoints
  • Review access logs regularly for reconnaissance or data exfiltration patterns

How to Mitigate CVE-2026-35448

Immediate Actions Required

  • Restrict access to the /plugin/BlockonomicsYPT/check.php endpoint at the web server level
  • Implement authentication requirements for all BlockonomicsYPT plugin endpoints
  • Review and audit access to other plugin endpoints for similar authorization bypass vulnerabilities
  • Consider temporarily disabling the BlockonomicsYPT plugin until a patch is available

Patch Information

At the time of publication, no official patch has been released by the vendor. Organizations should monitor the GitHub Security Advisory for updates regarding fixes. The vulnerability affects version 26.0 and prior versions of WWBN AVideo with the BlockonomicsYPT plugin enabled.

Workarounds

  • Disable the BlockonomicsYPT plugin if Bitcoin payment functionality is not required
  • Implement web server access controls (e.g., IP whitelisting) to restrict access to the check.php endpoint
  • Add authentication middleware at the reverse proxy or web server level for plugin endpoints
  • Deploy a WAF rule to block unauthenticated requests to /plugin/BlockonomicsYPT/check.php
bash
# Example nginx configuration to restrict access to the vulnerable endpoint
location /plugin/BlockonomicsYPT/check.php {
    # Deny all access - remove or modify once patched
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechAvideo

  • SeverityLOW

  • CVSS Score3.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35450: WWBN AVideo Auth Bypass Vulnerability

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

  • CVE-2026-39369: AVideo Path Traversal Vulnerability

  • CVE-2026-39367: WWBN AVideo EPG XSS 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