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

CVE-2026-41473: CyberPanel Auth Bypass Vulnerability

CVE-2026-41473 is an authentication bypass flaw in CyberPanel's AI Scanner API that allows attackers to write arbitrary data to the database. This article covers technical details, affected versions, impact, and mitigation.

Published: April 30, 2026

CVE-2026-41473 Overview

CyberPanel versions prior to 2.4.4 contain an authentication bypass vulnerability (CWE-306: Missing Authentication for Critical Function) in the AI Scanner worker API endpoints. This vulnerability allows unauthenticated remote attackers to write arbitrary data to the database by sending malicious requests to the /api/ai-scanner/status-webhook and /api/ai-scanner/callback endpoints. Attackers can exploit the lack of authentication checks to cause denial of service through storage exhaustion, corrupt scan history records, and pollute database fields with malicious data.

Critical Impact

Unauthenticated attackers can write arbitrary data to the database, potentially causing denial of service through storage exhaustion and data corruption without requiring any authentication.

Affected Products

  • CyberPanel versions prior to 2.4.4
  • CyberPanel AI Scanner API endpoints (/api/ai-scanner/status-webhook)
  • CyberPanel AI Scanner callback endpoint (/api/ai-scanner/callback)

Discovery Timeline

  • 2026-04-24 - CVE-2026-41473 published to NVD
  • 2026-04-28 - Last updated in NVD database

Technical Details for CVE-2026-41473

Vulnerability Analysis

This authentication bypass vulnerability exists in CyberPanel's AI Scanner worker API endpoints due to missing authentication checks on critical functions. The affected endpoints /api/ai-scanner/status-webhook and /api/ai-scanner/callback fail to verify that incoming requests are from authenticated sources before processing them. This allows any remote attacker to send arbitrary data that gets written directly to the database without authorization.

The vulnerability is particularly severe because it targets webhook and callback endpoints that are typically designed to receive external data. Without proper authentication mechanisms in place, these endpoints become open doors for attackers to manipulate the application's data stores.

Root Cause

The root cause of this vulnerability is the absence of authentication enforcement on the AI Scanner API endpoints. The application fails to implement proper access control checks before allowing write operations to the database. This represents a classic CWE-306 (Missing Authentication for Critical Function) weakness where critical functionality is exposed without requiring proper authentication credentials.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending specially crafted HTTP requests directly to the vulnerable API endpoints. The attack can be executed from anywhere on the network that can reach the CyberPanel installation.

python
# Security patch in plogical/acl.py
# Source: https://github.com/usmannasir/cyberpanel/commit/0a099b1b193946555fbdd387a28486b1521f9961

             else:
                 if childDomain.master.admin.owner == admin.pk:
                     return 1
+                else:
+                    return 0
 
         except:
             domainName = Websites.objects.get(domain=domain)

The patch adds proper return value handling to ensure unauthorized access attempts are explicitly denied by returning 0 instead of falling through without a return value.

python
# Security patch in websiteFunctions/website.py
# Source: https://github.com/usmannasir/cyberpanel/commit/0a099b1b193946555fbdd387a28486b1521f9961

             childDomains = []

             for web in websites:
-                for child in web.childdomains_set.filter(alais=0):
-                    if child.domain == f'mail.{web.domain}':
-                        pass
-                    else:
-                        childDomains.append(child)
+                for child in web.childdomains_set.all():
+                    if child.alais == 0:
+                        if child.domain == f'mail.{web.domain}':
+                            pass
+                        else:
+                            childDomains.append(child)

             pagination = self.getPagination(len(childDomains), recordsToShow)
             json_data = self.findChildsListJson(childDomains[finalPageNumber:endPageNumber])

This patch corrects the domain filtering logic to properly check the alais attribute after retrieving all child domains, preventing potential authorization bypass through improper filtering.

Detection Methods for CVE-2026-41473

Indicators of Compromise

  • Unusual HTTP POST requests to /api/ai-scanner/status-webhook from external IP addresses
  • Unexpected database growth or storage exhaustion on the CyberPanel server
  • Corrupted or anomalous entries in the AI Scanner history records
  • High volume of requests to /api/ai-scanner/callback endpoint without corresponding legitimate scan operations

Detection Strategies

  • Monitor web server access logs for unauthenticated requests to AI Scanner API endpoints
  • Implement rate limiting and anomaly detection on the /api/ai-scanner/status-webhook and /api/ai-scanner/callback endpoints
  • Set up alerts for database write operations from API endpoints that lack authenticated session tokens
  • Deploy Web Application Firewall (WAF) rules to detect and block suspicious payloads targeting these endpoints

Monitoring Recommendations

  • Enable verbose logging on CyberPanel API endpoints to capture request details including source IPs and payloads
  • Establish baseline metrics for normal AI Scanner API traffic to identify anomalous patterns
  • Configure database monitoring to alert on unusual write volumes or data integrity issues
  • Implement network-level monitoring to detect scanning activity targeting CyberPanel installations

How to Mitigate CVE-2026-41473

Immediate Actions Required

  • Upgrade CyberPanel to version 2.4.4 or later immediately
  • If immediate patching is not possible, restrict network access to the /api/ai-scanner/status-webhook and /api/ai-scanner/callback endpoints
  • Review database records for signs of unauthorized modification or data pollution
  • Implement firewall rules to limit access to CyberPanel administrative interfaces

Patch Information

The vulnerability has been addressed in CyberPanel version 2.4.4. The security fix is available through the official GitHub commit. Organizations running CyberPanel should update to the latest version as soon as possible. For additional technical analysis, refer to the ItsRez RCE Analysis and the VulnCheck Advisory.

Workarounds

  • Use web server configuration (nginx/Apache) to block access to /api/ai-scanner/* endpoints from untrusted sources
  • Implement IP allowlisting to restrict API access to known legitimate sources only
  • Deploy a reverse proxy with authentication requirements in front of the affected endpoints
  • Consider disabling the AI Scanner feature entirely if not required for operations
bash
# Nginx configuration to block unauthenticated access to AI Scanner endpoints
location ~ ^/api/ai-scanner/ {
    # Allow only trusted IP addresses
    allow 10.0.0.0/8;
    allow 192.168.1.0/24;
    deny all;
    
    # Alternatively, require authentication
    # auth_basic "Restricted Access";
    # auth_basic_user_file /etc/nginx/.htpasswd;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechCyberpanel

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.72%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-306
  • Technical References
  • VulnCheck Advisory on CyberPanel
  • Vendor Resources
  • GitHub Commit Update

  • ItsRez RCE Analysis
  • Related CVEs
  • CVE-2024-51378: CyberPanel Auth Bypass Vulnerability

  • CVE-2024-51567: CyberPanel Auth Bypass Vulnerability

  • CVE-2026-41472: CyberPanel Stored XSS Vulnerability

  • CVE-2024-51568: CyberPanel RCE 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