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

CVE-2026-41128: Craft CMS Auth Bypass Vulnerability

CVE-2026-41128 is an authentication bypass flaw in Craft CMS that allows users with limited permissions to remove arbitrary users from all user groups. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-41128 Overview

CVE-2026-41128 is an authorization bypass vulnerability in Craft CMS, a popular content management system. The vulnerability exists in the actionSavePermissions() endpoint, which allows a user with only viewUsers permission to remove arbitrary users from all user groups. While the _saveUserGroups() function enforces per-group authorization checks for group additions, it fails to perform equivalent authorization checks for removals. This asymmetric authorization logic means that submitting an empty groups value removes all existing group memberships without proper verification.

Critical Impact

Low-privileged users with only viewUsers permission can strip group memberships from any user, potentially disrupting access controls across the entire CMS.

Affected Products

  • Craft CMS versions 5.6.0 through 5.9.14

Discovery Timeline

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

Technical Details for CVE-2026-41128

Vulnerability Analysis

This vulnerability falls under CWE-862 (Missing Authorization), representing a broken access control issue in Craft CMS's user management functionality. The root problem lies in an inconsistent application of authorization checks between adding and removing users from groups.

When a user attempts to add members to a group, the _saveUserGroups() function correctly verifies that the requesting user has appropriate permissions for that specific group. However, the same function lacks corresponding authorization validation when processing group removals. An attacker who possesses only the viewUsers permission—a relatively common and low-privilege capability—can exploit this oversight to manipulate user group assignments.

The attack surface is network-accessible and requires low complexity to exploit. While the direct confidentiality and integrity impacts are limited, the availability impact to the affected organization can be significant as user access rights are disrupted.

Root Cause

The root cause is a missing authorization check in the _saveUserGroups() function within the actionSavePermissions() endpoint. The code path for group additions includes proper per-group authorization enforcement, but the removal logic was implemented without equivalent security controls. This creates an authorization asymmetry where removals bypass the permission checks that protect additions.

Attack Vector

The attack is conducted over the network against the actionSavePermissions() endpoint. An authenticated attacker with minimal viewUsers permission can craft a request with an empty groups parameter. When the server processes this request, it interprets the empty value as instruction to remove all group memberships from the target user, bypassing the authorization checks that would normally prevent such modifications. This can result in legitimate users losing access to protected resources or administrative functions tied to their group memberships.

The exploitation mechanism involves submitting a POST request to the actionSavePermissions() endpoint with a crafted payload that specifies a target user ID and an empty groups array. Due to the missing authorization check on removals, the system processes this request and strips all group memberships from the targeted user account. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-41128

Indicators of Compromise

  • Unusual requests to the actionSavePermissions() endpoint from users with only viewUsers permission
  • Audit log entries showing user group membership changes where groups were removed without corresponding additions
  • Multiple users unexpectedly losing group memberships in a short time frame
  • User accounts with empty group assignments that previously had group memberships

Detection Strategies

  • Monitor authentication and authorization logs for requests to user management endpoints from low-privileged accounts
  • Implement anomaly detection for bulk group membership changes or removal patterns
  • Review access logs for requests to actionSavePermissions() with empty or null groups parameters
  • Alert on group membership changes made by users who lack explicit group management permissions

Monitoring Recommendations

  • Enable detailed logging for all user management operations in Craft CMS
  • Implement real-time alerting for group membership modifications, especially bulk removals
  • Regularly audit user permissions and group assignments for unexpected changes
  • Deploy web application firewall (WAF) rules to detect suspicious parameter patterns in user management requests

How to Mitigate CVE-2026-41128

Immediate Actions Required

  • Upgrade Craft CMS to version 5.9.15 or later immediately
  • Review audit logs for any suspicious group membership changes since deployment of affected versions
  • Verify current user group assignments match expected configurations
  • Temporarily restrict viewUsers permission to only trusted administrators until patch is applied

Patch Information

Craft CMS has released version 5.9.15 which contains the fix for this vulnerability. The patch adds proper authorization checks to the group removal logic within _saveUserGroups(), ensuring that the same permission validation applied to group additions is now enforced for removals. The fix can be reviewed in the GitHub commit. Organizations should update through their standard Craft CMS update process using Composer or the control panel update feature.

Workarounds

  • Restrict the viewUsers permission to only highly trusted administrators pending upgrade
  • Implement additional access controls at the web server or reverse proxy level to limit access to user management endpoints
  • Enable comprehensive logging and monitoring for all requests to actionSavePermissions() endpoint
  • Consider temporarily disabling user group management features if not critical to operations
bash
# Upgrade Craft CMS using Composer
composer update craftcms/cms:^5.9.15

# Verify the installed version
./craft version

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechCraft Cms

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-862
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33162: Craft CMS Auth Bypass Vulnerability

  • CVE-2026-33160: Craft CMS Auth Bypass Vulnerability

  • CVE-2026-28782: Craft CMS Auth Bypass Vulnerability

  • CVE-2026-29069: Craft CMS Auth Bypass 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