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

CVE-2026-44197: Wagtail Information Disclosure Flaw

CVE-2026-44197 is an information disclosure vulnerability in Torchbox Wagtail CMS that allows unauthorized users to access page revisions. This article covers the technical details, affected versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-44197 Overview

CVE-2026-44197 is an information disclosure vulnerability in Wagtail, an open source content management system (CMS) built on Django. The flaw affects Wagtail versions prior to 7.0.7, 7.3.2, and 7.4. A CMS user lacking edit permissions on a page can still access page revisions through the revision compare view if they know the primary keys of two revisions. The vulnerability is classified under CWE-280: Improper Handling of Insufficient Permissions or Privileges and can result in disclosure of sensitive page content to unauthorized authenticated users.

Critical Impact

Authenticated CMS users without page edit rights can read historical page revisions, exposing draft content, internal notes, or sensitive data intended for restricted audiences.

Affected Products

  • Torchbox Wagtail versions prior to 7.0.7
  • Torchbox Wagtail versions prior to 7.3.2 (7.3.x branch)
  • Torchbox Wagtail versions prior to 7.4

Discovery Timeline

  • 2026-05-11 - CVE-2026-44197 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-44197

Vulnerability Analysis

Wagtail maintains revision history for pages through its versioning system. The revision compare view allows authorized editors to view differences between two stored revisions of a page. The view accepts two primary key parameters that identify the revisions to compare.

The vulnerability stems from incomplete authorization enforcement on this comparison endpoint. The view verifies that a user is authenticated to the CMS but does not validate that the user holds edit permissions on the underlying page. Any authenticated CMS user who guesses or enumerates revision primary keys can retrieve revision contents that should be restricted.

This exposes draft content, unpublished changes, editorial comments, and any other field data captured in the revision snapshot. The impact is confidentiality only — integrity and availability are not affected.

Root Cause

The root cause is a missing permission check in the revision compare view. The handler validates session authentication but omits the page-level permission check required to view revisions. This aligns with [CWE-280], where the application fails to handle missing privileges correctly and defaults to permitting access.

Attack Vector

Exploitation requires network access to the Wagtail admin interface and valid CMS credentials with any role. The attacker iterates or guesses two integer revision primary keys and submits them to the compare view URL. Sequential integer identifiers make enumeration straightforward. No user interaction beyond the attacker's authenticated request is required.

No verified public exploit code is available. The vulnerability mechanism is described in the Wagtail GitHub Security Advisory GHSA-c6wj-9vcj-75pj.

Detection Methods for CVE-2026-44197

Indicators of Compromise

  • Repeated HTTP GET requests to revision compare endpoints under the Wagtail admin path from low-privilege user sessions.
  • Sequential or enumerative access patterns against revision primary key parameters in admin URLs.
  • CMS users without page edit rights generating traffic to revision-related views in access logs.

Detection Strategies

  • Review Django and web server access logs for requests to the revision compare view originating from accounts that do not have editor or moderator roles on the referenced pages.
  • Correlate Wagtail user role assignments with HTTP request paths to identify permission-versus-activity mismatches.
  • Alert on high-volume access to revision endpoints from a single session, which suggests enumeration of revision IDs.

Monitoring Recommendations

  • Forward Wagtail and Django application logs to a centralized log platform for retention and query.
  • Establish a baseline of normal revision-view activity per user role and alert on deviations.
  • Audit CMS user accounts quarterly and remove dormant or over-provisioned accounts that could be abused.

How to Mitigate CVE-2026-44197

Immediate Actions Required

  • Upgrade Wagtail to version 7.0.7, 7.3.2, or 7.4 depending on the deployed release branch.
  • Audit existing CMS user accounts and revoke access for users who do not require CMS login.
  • Review revision history for pages containing sensitive content and rotate or redact any data that may have been exposed.

Patch Information

Torchbox released fixed versions 7.0.7, 7.3.2, and 7.4 of Wagtail that enforce the correct page-level permission check on the revision compare view. Refer to the Wagtail GitHub Security Advisory GHSA-c6wj-9vcj-75pj for the patch commit and release notes.

Workarounds

  • Restrict access to the Wagtail admin interface to trusted network ranges using a reverse proxy or VPN until the patch is applied.
  • Reduce the number of low-privilege CMS accounts to limit the population of users able to exploit the flaw.
  • Avoid storing highly sensitive data in page revisions on unpatched installations.
bash
# Upgrade Wagtail using pip to a patched release
pip install --upgrade "wagtail>=7.4"

# Or for the 7.3.x branch
pip install --upgrade "wagtail>=7.3.2,<7.4"

# Or for the 7.0.x branch
pip install --upgrade "wagtail>=7.0.7,<7.1"

# Verify the installed version
python -c "import wagtail; print(wagtail.__version__)"

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechWagtail

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-280
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44201: Wagtail Information Disclosure Flaw

  • CVE-2026-44198: Wagtail CMS Information Disclosure Flaw

  • CVE-2026-25517: Wagtail CMS Information Disclosure Flaw

  • CVE-2026-44199: Wagtail CMS Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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