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

CVE-2026-21446: Webkul Bagisto Auth Bypass Vulnerability

CVE-2026-21446 is an authentication bypass flaw in Webkul Bagisto that allows attackers to access API endpoints without authentication and create admin accounts. This article covers technical details, affected versions, and patches.

Updated: January 22, 2026

CVE-2026-21446 Overview

CVE-2026-21446 is an authentication bypass vulnerability in Bagisto, an open source Laravel eCommerce platform developed by Webkul. The vulnerability exists in versions on the 2.3 branch prior to 2.3.10, where API routes remain active even after initial installation is complete. The underlying API endpoints (/install/api/*) are directly accessible and exploitable without any authentication, allowing attackers to bypass the installer entirely by calling the API endpoints directly.

Critical Impact

This vulnerability allows any unauthenticated attacker to create admin accounts, modify application configurations, and potentially overwrite existing data on vulnerable Bagisto installations.

Affected Products

  • Webkul Bagisto versions 2.3.x prior to 2.3.10
  • All deployments with exposed /install/api/* endpoints
  • Self-hosted Bagisto eCommerce installations

Discovery Timeline

  • 2026-01-02 - CVE CVE-2026-21446 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2026-21446

Vulnerability Analysis

This vulnerability is classified as CWE-306 (Missing Authentication for Critical Function). The core issue stems from installer API routes that remain accessible after the Bagisto installation process completes. These endpoints were designed to facilitate the initial setup workflow but were not properly disabled or protected once installation finished.

The vulnerability enables complete administrative takeover of Bagisto installations. An attacker can leverage the exposed API endpoints to create new administrator accounts with full privileges, modify critical application configurations, and potentially corrupt or overwrite existing store data. This represents a severe breach of the application's security boundary, as no authentication is required to access these sensitive installation functions.

Root Cause

The root cause is improper access control on the installer API endpoints. The application fails to enforce authentication checks on the /install/api/* routes, and there is no mechanism to disable these routes after installation completes. The fix introduces a skip_admin_creation parameter check and enhances security in the Sanitizer component.

Attack Vector

The attack vector is network-based, requiring no authentication and no user interaction. An attacker with network access to a vulnerable Bagisto instance can directly call the installer API endpoints to perform administrative actions. The exploitation is straightforward—simply sending crafted HTTP requests to the /install/api/* endpoints allows full control over the installation process, including admin account creation and configuration changes.

php
// Security patch in AdminsTableSeeder.php adding skip_admin_creation check
// Source: https://github.com/bagisto/bagisto/commit/380c045e48490da740cd505fb192cc45e1809bed

         $defaultLocale = $parameters['default_locale'] ?? config('app.locale');
 
+        if (isset($parameters['skip_admin_creation']) && $parameters['skip_admin_creation']) {
+            return;
+        }
+
         DB::table('admins')->insert([
             'id'         => 1,
             'name'       => trans('installer::app.seeders.user.users.name', [], $defaultLocale),
php
// Security patch in Sanitizer.php enhancing SVG sanitization with remote reference removal
// Source: https://github.com/bagisto/bagisto/commit/380c045e48490da740cd505fb192cc45e1809bed

     public function sanitizeSVG($path, $mimeType)
     {
         if ($this->checkMimeType($mimeType)) {
-            /* sanitizer instance */
             $sanitizer = new MainSanitizer;
 
-            /* grab svg file */
+            $sanitizer->removeRemoteReferences(true);
+
             $dirtySVG = Storage::get($path);
 
-            /* save sanitized svg */
             Storage::put($path, $sanitizer->sanitize($dirtySVG));
         }
     }

Detection Methods for CVE-2026-21446

Indicators of Compromise

  • Unexpected HTTP requests to /install/api/* endpoints in web server access logs
  • Creation of new administrator accounts without authorized user action
  • Unauthorized modifications to application configuration files or database settings
  • Anomalous API traffic patterns targeting installation-related endpoints

Detection Strategies

  • Monitor web server logs for requests to /install/api/* paths from external IP addresses
  • Implement web application firewall (WAF) rules to alert on or block access to installer API routes
  • Review admin user tables for unauthorized account creation with elevated privileges
  • Deploy file integrity monitoring on Bagisto configuration files

Monitoring Recommendations

  • Enable verbose logging for API endpoint access and authentication events
  • Configure SIEM alerts for patterns indicating installer API exploitation attempts
  • Perform regular audits of administrator accounts and their creation timestamps
  • Monitor for unexpected database modifications to the admins table

How to Mitigate CVE-2026-21446

Immediate Actions Required

  • Upgrade Bagisto to version 2.3.10 or later immediately
  • Block access to /install/api/* endpoints at the web server or firewall level
  • Audit existing administrator accounts for any unauthorized entries
  • Review application logs for evidence of prior exploitation

Patch Information

The vulnerability is fixed in Bagisto version 2.3.10. The patch is available via the GitHub Commit. For detailed information about the vulnerability and remediation, refer to the GitHub Security Advisory GHSA-6h7w-v2xr-mqvw.

Workarounds

  • Block all requests to /install/api/* paths using web server configuration or reverse proxy rules
  • Implement network-level access controls to restrict access to the Bagisto admin panel and API
  • Consider placing the application behind a VPN or IP whitelist if immediate patching is not possible
bash
# Nginx configuration to block installer API endpoints
location ~ ^/install/api {
    deny all;
    return 403;
}

# Apache .htaccess rule to block installer API endpoints
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^install/api - [F,L]
</IfModule>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWebkul Bagisto

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.23%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:P/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
  • AvailabilityNone
  • CWE References
  • CWE-306
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-6h7w-v2xr-mqvw
  • Related CVEs
  • CVE-2026-21447: Webkul Bagisto Auth Bypass Vulnerability

  • CVE-2026-21448: Webkul Bagisto RCE Vulnerability

  • CVE-2026-21449: Webkul Bagisto RCE Vulnerability

  • CVE-2026-21450: Webkul Bagisto RCE Vulnerability
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