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

CVE-2026-34572: CI4MS Authentication Bypass Vulnerability

CVE-2026-34572 is an authentication bypass flaw in CI4MS that allows deactivated accounts to retain session access indefinitely. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-34572 Overview

CVE-2026-34572 is a broken access control vulnerability in CI4MS, a CodeIgniter 4-based CMS skeleton that provides a production-ready, modular architecture with RBAC (Role-Based Access Control) authorization and theme support. Prior to version 0.31.0.0, the application fails to immediately revoke active user sessions when an account is deactivated, resulting in persistent unauthorized access.

Critical Impact

Deactivated user accounts retain full system access indefinitely until the user manually logs out, completely bypassing intended access control policies and enabling persistent unauthorized access to protected resources.

Affected Products

  • CI4MS versions prior to 0.31.0.0
  • CodeIgniter 4-based deployments using CI4MS CMS skeleton
  • Systems relying on CI4MS RBAC authorization mechanisms

Discovery Timeline

  • 2026-04-01 - CVE CVE-2026-34572 published to NVD
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-34572

Vulnerability Analysis

This vulnerability stems from a fundamental design flaw in how CI4MS handles session management and account state validation. The application architecture assumes that once a user is authenticated, they remain trusted for the entire duration of their session. This implicit trust model creates a dangerous gap between account administrative actions and their actual enforcement.

When an administrator deactivates a user account, the system only enforces this state change during the authentication (login) process. Existing sessions that were established before the deactivation remain fully functional. The lack of a session expiration or account state validation mechanism means deactivated accounts can continue accessing the system with all their previous privileges intact.

This represents a critical security flaw categorized under CWE-284 (Improper Access Control). The vulnerability is particularly concerning for organizations that rely on account deactivation as an immediate security response—such as when an employee is terminated, credentials are compromised, or suspicious activity is detected.

Root Cause

The root cause is a logic flaw in the backend design where account state changes are decoupled from active session management. The CI4MS session handling mechanism does not include:

  1. Real-time account state validation - Sessions are not validated against current account status on each request
  2. Session invalidation hooks - No mechanism triggers session termination when account status changes
  3. Session expiration policies - Absence of configurable session timeouts allows indefinite session persistence

This architectural oversight means the system's access control model is only enforced at the authentication boundary, not throughout the user's session lifecycle.

Attack Vector

The attack vector for CVE-2026-34572 is network-based and requires low privileges to exploit. An attacker who has previously obtained valid credentials (through compromise, social engineering, or as a former authorized user) can maintain persistent access even after their account has been deactivated.

The exploitation scenario typically unfolds as follows: A user establishes an authenticated session with the CI4MS application. Subsequently, an administrator deactivates the user's account due to policy violation, termination, or security concerns. Despite the deactivation, the user's existing session remains valid and fully functional, allowing continued access to all resources and functionality available to their original role.

The attack requires no special tools or techniques—simply maintaining an active browser session is sufficient. This makes the vulnerability particularly dangerous in scenarios involving insider threats or rapid incident response where immediate access revocation is critical.

Detection Methods for CVE-2026-34572

Indicators of Compromise

  • Active sessions associated with accounts that have been administratively deactivated
  • Continued API calls or resource access from user accounts marked as inactive in the database
  • Audit log entries showing activity from deactivated users after their deactivation timestamp
  • Session tokens in use that correspond to disabled account identifiers

Detection Strategies

  • Implement monitoring to correlate active sessions against current account status in real-time
  • Deploy SIEM rules to alert on activity from accounts with inactive status flags
  • Create scheduled audits comparing active session store entries against account status table
  • Monitor for discrepancies between last account activity timestamps and account deactivation times

Monitoring Recommendations

  • Enable verbose session activity logging including source IP, session ID, and associated user account
  • Implement real-time dashboards tracking sessions per account status (active/inactive)
  • Configure alerts for any authenticated requests from accounts with deactivated status
  • Establish baseline session duration metrics to identify anomalously long-lived sessions

How to Mitigate CVE-2026-34572

Immediate Actions Required

  • Upgrade CI4MS to version 0.31.0.0 or later immediately
  • Manually invalidate all active sessions for any recently deactivated accounts
  • Audit session logs to identify potential exploitation during the vulnerable period
  • Force re-authentication for all active sessions as a precautionary measure

Patch Information

The vulnerability has been addressed in CI4MS version 0.31.0.0. Organizations should upgrade to this version immediately to ensure proper session invalidation when accounts are deactivated. The fix implements proper session lifecycle management that validates account status on each request and provides hooks for immediate session termination when account status changes.

For detailed patch information, refer to the GitHub Release 0.31.0.0 and the GitHub Security Advisory GHSA-8fq3-c5w3-pj3q.

Workarounds

  • Implement a session timeout policy to limit maximum session duration while awaiting the patch
  • Deploy a reverse proxy or WAF rule to validate account status before forwarding authenticated requests
  • Create a manual process to purge all sessions from the session store when deactivating accounts
  • Consider implementing IP-based access restrictions as an additional layer of defense
bash
# Configuration example - Manual session cleanup for CI4MS (pre-patch workaround)
# Clear sessions for a specific user ID from the session database
# Replace 'user_id_here' with the actual deactivated user's ID

# If using file-based sessions (clear session files)
find /path/to/ci4ms/writable/session -name "ci_session_*" -exec grep -l "user_id_here" {} \; -delete

# If using database sessions (execute in MySQL/MariaDB)
# DELETE FROM ci_sessions WHERE data LIKE '%user_id_here%';

# Recommended: Implement session timeout in app/Config/App.php
# public $sessionExpiration = 7200; # 2 hours

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechCodeigniter

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Release 0.31.0.0

  • GitHub Security Advisory GHSA-8fq3-c5w3-pj3q
  • Related CVEs
  • CVE-2026-34570: CI4MS Auth Bypass Vulnerability

  • CVE-2026-34560: CI4MS CodeIgniter CMS XSS Vulnerability

  • CVE-2026-34562: CI4MS CodeIgniter CMS XSS Vulnerability

  • CVE-2026-34557: CI4MS CMS Stored XSS 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