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

CVE-2026-40099: Getkirby Kirby Auth Bypass Vulnerability

CVE-2026-40099 is an authentication bypass vulnerability in Getkirby Kirby CMS that allows authenticated attackers to create published pages bypassing editorial workflow. This article covers technical details, affected versions, and patches.

Published: April 30, 2026

CVE-2026-40099 Overview

CVE-2026-40099 is an Authorization Bypass vulnerability in Kirby, an open-source content management system. The vulnerability exists in the way Kirby handles page creation permissions through its REST API. Specifically, the pages.changeStatus permission was not properly enforced during page creation, allowing authenticated users with only pages.create permission to bypass the normal editorial workflow and immediately publish pages by overriding the isDraft flag.

Critical Impact

Authenticated attackers with limited pages.create permission can bypass editorial workflows and immediately publish content without proper authorization, potentially exposing unapproved or malicious content to site visitors.

Affected Products

  • Kirby CMS versions prior to 4.9.0
  • Kirby CMS versions 5.x prior to 5.4.0
  • getkirby kirby

Discovery Timeline

  • 2026-04-24 - CVE CVE-2026-40099 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-40099

Vulnerability Analysis

This Authorization Bypass vulnerability (CWE-863: Incorrect Authorization) stems from improper permission checking in Kirby's page creation functionality. Kirby's permission system controls user actions through role-based blueprints defined in site/blueprints/users/... and model-specific options in site/blueprints/pages/.... The system provides distinct permissions including pages.create and pages.changeStatus to manage content creation and publication workflows.

The vulnerability exploits a logical flaw where the changeStatus permission was checked independently and only during explicit page status changes, not during the initial page creation process. While the Kirby Panel correctly enforces the editorial workflow by creating pages as drafts first, the REST API accepts an isDraft parameter override that was not subject to the same authorization checks.

Root Cause

The root cause lies in the incomplete implementation of permission checks during page creation via the REST API. The page creation rules did not validate whether a user had the pages.changeStatus permission before allowing them to set the isDraft flag to false. This created a discrepancy between the Panel interface (which enforced the workflow) and the API (which did not), resulting in a classic authorization bypass through an alternative access path.

Attack Vector

The attack vector is network-based and requires authentication with at least pages.create permission. An authenticated attacker can exploit this vulnerability by:

  1. Authenticating to the Kirby CMS REST API with valid credentials
  2. Crafting a page creation request that includes isDraft: false in the request payload
  3. Sending the request to the page creation endpoint
  4. The page is created in a published state, bypassing the intended editorial review workflow

This allows content to be published without requiring the pages.changeStatus permission, effectively circumventing organizational content approval processes. The attacker must have valid credentials with pages.create permission, but does not need pages.changeStatus permission to publish content directly.

Detection Methods for CVE-2026-40099

Indicators of Compromise

  • Unexpected published pages appearing without corresponding draft-to-published status change logs
  • REST API requests containing isDraft: false parameter from users who lack pages.changeStatus permission
  • Pages published by users whose role blueprints explicitly deny pages.changeStatus
  • Audit log discrepancies showing page creation without subsequent status change events

Detection Strategies

  • Monitor REST API logs for page creation requests that include the isDraft parameter set to false
  • Implement alerting for pages published by users without explicit pages.changeStatus authorization
  • Review Kirby access logs for patterns of direct page publication bypassing the Panel workflow
  • Cross-reference user permissions against published content to identify unauthorized publications

Monitoring Recommendations

  • Enable detailed API request logging for all page creation endpoints
  • Implement role-based monitoring to track actions performed by users with limited permissions
  • Configure alerts for content publication events that skip the standard draft workflow
  • Regularly audit user permissions against their actual content management activities

How to Mitigate CVE-2026-40099

Immediate Actions Required

  • Upgrade Kirby CMS to version 4.9.0 or later for the 4.x branch
  • Upgrade Kirby CMS to version 5.4.0 or later for the 5.x branch
  • Review recently published pages to identify any unauthorized publications
  • Audit user accounts with pages.create permission to verify appropriate access levels

Patch Information

Kirby has released security patches in versions 4.9.0 and 5.4.0 that address this vulnerability. The fix adds a check to the page creation rules that ensures users without the pages.changeStatus permission cannot create published pages—only page drafts. For complete details, see the GitHub Security Advisory GHSA-w942-j9r6-hr6r, Kirby 4.9.0 Release Notes, and Kirby 5.4.0 Release Notes.

Workarounds

  • Restrict REST API access to trusted users only until patching is possible
  • Implement a web application firewall (WAF) rule to block or flag page creation requests containing isDraft: false from untrusted sources
  • Temporarily revoke pages.create permission from users who should not have publishing capabilities
  • Monitor and manually review all newly published content until the patch is applied
bash
# Configuration example
# Review and update user blueprints to restrict permissions
# File: site/blueprints/users/editor.yml

# Before patching, consider removing pages.create from users
# who should not be able to publish directly
permissions:
  pages:
    create: false
    changeStatus: false

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechGetkirby

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Release Note 4.9.0

  • GitHub Release Note 5.4.0
  • Vendor Resources
  • GitHub Security Advisory GHSA-w942-j9r6-hr6r
  • Related CVEs
  • CVE-2026-34587: Getkirby Kirby Auth Bypass Vulnerability

  • CVE-2026-41325: Getkirby Kirby Auth Bypass Vulnerability

  • CVE-2026-32870: Getkirby Kirby XXE Vulnerability

  • CVE-2025-30159: Getkirby Kirby Path Traversal Flaw
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