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-2025-68456

CVE-2025-68456: Craft CMS Information Disclosure Flaw

CVE-2025-68456 is an information disclosure vulnerability in Craft CMS allowing unauthenticated users to trigger database backups, causing resource exhaustion. This article covers technical details, affected versions, and patches.

Updated: March 27, 2026

CVE-2025-68456 Overview

CVE-2025-68456 is a high-severity vulnerability affecting Craft CMS, a popular platform for creating digital experiences. The vulnerability allows unauthenticated users to trigger database backup operations via specific admin actions, potentially leading to resource exhaustion or information disclosure. This issue stems from missing authentication checks and improper resource management in the UpdaterController's backup functionality.

Critical Impact

Unauthenticated attackers can trigger database backup operations, leading to potential resource exhaustion (Denial of Service) or sensitive information disclosure from database exports.

Affected Products

  • Craft CMS versions 5.0.0-RC1 through 5.8.20
  • Craft CMS versions 3.0.0 through 4.16.16
  • All Craft CMS 3.x versions (users should upgrade to Craft 4 or 5)

Discovery Timeline

  • 2026-01-05 - CVE CVE-2025-68456 published to NVD
  • 2026-01-12 - Last updated in NVD database

Technical Details for CVE-2025-68456

Vulnerability Analysis

This vulnerability exists in Craft CMS's update controller functionality, specifically within the actionBackup() method in src/controllers/UpdaterController.php. The core issue is that the backup action could be triggered without proper authentication, and critically, without verifying that migrations were actually pending. This allowed unauthenticated users to initiate database backup operations at will.

The vulnerability combines two weakness types: CWE-202 (Exposure of Sensitive Information Through Data Queries) and CWE-770 (Allocation of Resources Without Limits or Throttling). Together, these create a scenario where attackers can repeatedly trigger resource-intensive database backup operations, leading to denial of service conditions, or potentially access sensitive database contents through the backup mechanism.

Root Cause

The root cause lies in the missing validation check within the actionBackup() method. Prior to the patch, the method would execute database backup operations without first verifying whether migrations were actually pending. This missing authorization and validation allowed the backup functionality to be abused by unauthenticated users who could directly invoke the backup action endpoint.

Attack Vector

The attack is network-based with low complexity, requiring no authentication or user interaction. An attacker can exploit this vulnerability by sending crafted requests to the update controller's backup action endpoint. Since the backup operation is resource-intensive (involving full database exports), repeated requests can exhaust server resources, causing denial of service. Additionally, if backup files are stored in accessible locations or error messages leak information, attackers could potentially gain access to sensitive database contents.

php
// Security patch in src/controllers/UpdaterController.php
     */
    public function actionBackup(): Response
    {
+        // make sure migrations are pending
+        if (!Craft::$app->getUpdates()->getAreMigrationsPending()) {
+            return $this->sendFinished();
+        }
+
        try {
            Craft::$app->getDb()->backup();
        } catch (Throwable $e) {

Source: GitHub Commit Reference

The patch adds a critical check to verify that migrations are pending before allowing the backup operation to proceed. If no migrations are pending, the method returns early without executing the backup, effectively preventing unauthorized abuse of the backup functionality.

Detection Methods for CVE-2025-68456

Indicators of Compromise

  • Unusual spike in requests to /admin/actions/updater/backup or similar update controller endpoints
  • Multiple database backup files created in unexpected timeframes or locations
  • Server resource exhaustion symptoms (high CPU, memory, or disk I/O) correlating with backup requests
  • Error logs showing repeated backup operation failures or timeouts

Detection Strategies

  • Monitor web server access logs for repeated requests to update controller endpoints from unauthenticated sessions
  • Implement rate limiting on admin action endpoints to detect and block abuse attempts
  • Configure alerting for unexpected database backup operations or file creation events
  • Review application logs for backup operations that occur outside of legitimate update workflows

Monitoring Recommendations

  • Enable detailed logging for Craft CMS update controller actions and review regularly
  • Monitor server resource utilization and set alerts for abnormal patterns during backup operations
  • Implement network-level monitoring for suspicious traffic patterns targeting admin endpoints
  • Use SentinelOne's Singularity Platform to detect anomalous process behavior associated with database operations

How to Mitigate CVE-2025-68456

Immediate Actions Required

  • Upgrade Craft CMS 5.x installations to version 5.8.21 or later immediately
  • Upgrade Craft CMS 4.x installations to version 4.16.17 or later immediately
  • Craft CMS 3.x users should migrate to Craft CMS 4 or 5 with the latest security patches
  • Implement Web Application Firewall (WAF) rules to restrict access to update controller endpoints

Patch Information

Craft CMS has released security patches addressing this vulnerability. Version 5.8.21 and version 4.16.17 contain the fix that adds proper validation checks before allowing backup operations. The patch ensures that the actionBackup() method verifies migrations are pending before executing database backups, preventing abuse by unauthenticated users.

For detailed patch information, refer to the GitHub Security Advisory GHSA-v64r-7wg9-23pr and the GitHub Changelog Update.

Workarounds

  • Restrict access to the update controller endpoints via web server configuration or firewall rules
  • Implement IP-based access controls limiting admin action endpoints to trusted networks only
  • Disable the update controller temporarily if not actively using Craft's built-in update functionality
  • Monitor and rate-limit requests to sensitive admin endpoints until patches can be applied
bash
# Example Nginx configuration to restrict access to update controller
location ~* /admin/actions/updater {
    allow 10.0.0.0/8;       # Allow internal network
    allow 192.168.0.0/16;   # Allow private network
    deny all;               # Deny all other access
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechCraftcms

  • SeverityHIGH

  • CVSS Score7.0

  • EPSS Probability0.17%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:N/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-202

  • CWE-770
  • Technical References
  • GitHub Changelog Update
  • Vendor Resources
  • GitHub Commit Reference

  • GitHub Security Advisory GHSA-v64r-7wg9-23pr
  • Related CVEs
  • CVE-2026-33159: Craft CMS Auth Bypass Vulnerability

  • CVE-2026-31859: Craft CMS Reflected XSS Vulnerability

  • CVE-2026-29175: Craftcms Craft Commerce XSS Vulnerability

  • CVE-2026-29173: Craft Commerce Stored XSS 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