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

CVE-2026-34587: Getkirby Kirby Auth Bypass Vulnerability

CVE-2026-34587 is an authentication bypass flaw in Getkirby Kirby that allows attackers to bypass editorial workflows and publish pages directly. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-34587 Overview

CVE-2026-34587 is an authorization bypass vulnerability in Kirby, an open-source content management system. The vulnerability allows authenticated attackers with the pages.create permission to bypass the editorial workflow and immediately create published pages by exploiting a flaw in how the REST API handles page creation permissions.

In affected versions of Kirby, the pages.create and pages.changeStatus permissions were checked independently without proper coordination. While the Kirby Panel enforces that new pages are created as drafts requiring subsequent approval, the REST API permitted overriding the isDraft flag during page creation. This effectively allowed users to bypass the changeStatus permission check, enabling them to publish content directly without going through the intended editorial workflow.

Critical Impact

Authenticated users with limited page creation privileges can bypass editorial workflows and immediately publish unauthorized content, potentially leading to unauthorized content publication, reputation damage, or deployment of malicious content on affected Kirby CMS installations.

Affected Products

  • Kirby CMS versions prior to 4.9.0
  • Kirby CMS versions prior to 5.4.0
  • getkirby kirby

Discovery Timeline

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

Technical Details for CVE-2026-34587

Vulnerability Analysis

The vulnerability stems from an improper access control implementation in Kirby's permission system. Kirby provides granular user permissions that can be configured through user blueprints located in site/blueprints/users/ and can be further customized per model through the options feature in model blueprints such as site/blueprints/pages/.

The core issue is that the changeStatus permission, which controls whether a user can change a page's publication status, was not enforced during the page creation process via the REST API. When a page is created through the Kirby Panel, it is always created as a draft (isDraft: true), requiring a separate action with pages.changeStatus permission to publish it. However, the REST API allowed callers to specify the isDraft flag directly during creation, completely bypassing this safeguard.

This architectural flaw means that an attacker with only pages.create permission—who should only be able to create draft content for review—could craft REST API requests to create immediately published pages, circumventing the editorial review process entirely.

Root Cause

The root cause is improper enforcement of the changeStatus permission during the page creation flow. The permission checks for pages.create and pages.changeStatus were implemented as independent validations rather than being coordinated to enforce the intended workflow. Additionally, the Options logic had a flaw where it would double-resolve queries in option values coming from OptionsQuery or OptionsApi sources, contributing to the authorization bypass.

Attack Vector

The attack is network-based and requires a low-privileged authenticated user account with the pages.create permission. The attacker exploits the vulnerability by sending a crafted POST request to Kirby's REST API endpoint for page creation, explicitly setting the isDraft parameter to false in the request payload. This bypasses the normal requirement that pages be created as drafts and later published by users with the appropriate changeStatus permission.

The attack requires authentication but no user interaction, making it exploitable by any insider threat or compromised account with minimal page creation privileges. The impact includes potential unauthorized content publication, SEO manipulation, distribution of malicious content, or reputational damage to the organization.

Detection Methods for CVE-2026-34587

Indicators of Compromise

  • Unexpected page publications by users who should only have draft creation permissions
  • REST API audit logs showing page creation requests with isDraft: false parameter
  • Pages appearing in published state without corresponding status change audit entries
  • Unusual API activity patterns from low-privileged user accounts

Detection Strategies

  • Monitor Kirby CMS access logs for REST API page creation requests containing isDraft parameter manipulation
  • Implement audit logging for page status changes and compare against user permission profiles
  • Review published content for unauthorized or suspicious material that bypassed editorial review
  • Deploy web application firewall (WAF) rules to flag REST API requests attempting to set page status during creation

Monitoring Recommendations

  • Enable detailed logging for all REST API endpoints in Kirby CMS
  • Configure alerts for page publications by users lacking pages.changeStatus permission
  • Implement content review workflows with notifications for unexpected publications
  • Regularly audit user permissions against actual content modification patterns

How to Mitigate CVE-2026-34587

Immediate Actions Required

  • Upgrade Kirby CMS to version 4.9.0 or 5.4.0 immediately
  • Audit recently published pages for unauthorized content created by low-privileged users
  • Review user blueprints to ensure permission assignments follow least-privilege principles
  • Temporarily restrict REST API access until patches are applied

Patch Information

Getkirby has released patches in Kirby 4.9.0 and Kirby 5.4.0 that address this vulnerability. The fix updates the Options logic to no longer double-resolve queries in option values coming from OptionsQuery or OptionsApi sources. The patched versions now only resolve queries that are directly configured in the blueprints, ensuring proper enforcement of the changeStatus permission during page creation.

For detailed information about the security fix, refer to the GitHub Security Advisory GHSA-jcjw-58rv-c452.

Workarounds

  • Restrict REST API access to trusted users only until the patch can be applied
  • Implement additional API gateway controls to validate page creation requests
  • Disable the REST API endpoint for page creation temporarily if not business-critical
  • Configure web application firewall rules to block requests containing isDraft parameter manipulation
bash
# Example: Restrict Kirby API access at the web server level (nginx)
location /api/ {
    # Allow only specific trusted IP addresses
    allow 10.0.0.0/8;
    deny all;
    
    # Additional rate limiting
    limit_req zone=api_limit burst=5 nodelay;
}

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

  • SeverityHIGH

  • CVSS Score7.6

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:H/VI:H/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-1336
  • Technical References
  • GitHub Release Notes 4.9.0

  • GitHub Release Notes 5.4.0
  • Vendor Resources
  • GitHub Security Advisory GHSA-jcjw-58rv-c452
  • Related CVEs
  • CVE-2026-40099: 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