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

CVE-2026-44201: Wagtail Information Disclosure Flaw

CVE-2026-44201 is an information disclosure vulnerability in Torchbox Wagtail that exposes filenames and names of documents in private collections. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-44201 Overview

CVE-2026-44201 is an information disclosure vulnerability in Wagtail, an open source content management system built on Django. The Documents and Images API incorrectly enumerated items stored in private collections. Any user with API access could view the filename and name fields of documents and images intended to remain private. The flaw stems from improper enforcement of collection-level permissions when listing API resources, and it is categorized under [CWE-280] (Improper Handling of Insufficient Permissions or Privileges). Wagtail maintainers fixed the issue in versions 7.0.7, 7.3.2, and 7.4.

Critical Impact

Unauthenticated or low-privilege API consumers can enumerate metadata of private documents and images, exposing sensitive filenames and asset names that should be restricted to authorized collection members.

Affected Products

  • Torchbox Wagtail versions prior to 7.0.7
  • Torchbox Wagtail versions prior to 7.3.2 (7.1.x and 7.2.x branches)
  • Torchbox Wagtail versions prior to 7.4

Discovery Timeline

  • 2026-05-11 - CVE-2026-44201 published to the National Vulnerability Database
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-44201

Vulnerability Analysis

Wagtail exposes a Documents API and an Images API that allow clients to list and retrieve media assets stored in the CMS. Assets can be organized into collections, and collections can be marked private to restrict visibility to specific groups or users. Prior to the fixed releases, the API listing endpoints did not apply collection privacy filters consistently. Items located in private collections appeared in API list responses returned to users who lacked permission to view those collections.

The disclosed data is limited to metadata fields, specifically the document filename and the image name. The vulnerability does not grant access to the underlying file bytes, but the leaked identifiers can reveal internal project names, customer data references, or pre-release content. Attackers can use this information for reconnaissance ahead of targeted social engineering or follow-on attacks.

Root Cause

The root cause is improper handling of insufficient permissions in the queryset construction for the Documents and Images API viewsets. Collection-based access controls were enforced inconsistently between the admin interface and the public API serializer, allowing private items to surface in API list responses.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction beyond access to the public API endpoints. An attacker issues standard GET requests to the Documents or Images API and parses the response for items belonging to private collections. Refer to the Wagtail GitHub Security Advisory GHSA-p5gm-92h4-6pv6 for the maintainer write-up and patch references.

Detection Methods for CVE-2026-44201

Indicators of Compromise

  • Unusual volumes of GET requests to /api/v2/documents/ or /api/v2/images/ endpoints from a single source.
  • API responses containing item identifiers that correspond to documents or images filed under private collections.
  • Access log entries showing API enumeration patterns such as sequential ?offset= or ?limit= paging from non-administrative clients.

Detection Strategies

  • Compare API list responses against the inventory of private collections to identify leaked items in historical logs.
  • Alert on anonymous or low-privilege accounts that successfully retrieve API list pages containing private collection IDs.
  • Review web application firewall logs for repeated, automated requests targeting the Wagtail Documents and Images API paths.

Monitoring Recommendations

  • Enable verbose access logging on the Wagtail application server and forward logs to a centralized SIEM for correlation.
  • Track the count of distinct document and image IDs returned per API session to surface scraping behavior.
  • Monitor for spikes in 200 OK responses on API endpoints following the public disclosure date of 2026-05-11.

How to Mitigate CVE-2026-44201

Immediate Actions Required

  • Upgrade Wagtail to 7.0.7, 7.3.2, or 7.4 depending on the deployed release branch.
  • Audit private collections for sensitive filenames that may have been disclosed prior to patching.
  • Rotate or rename any documents and images whose filenames themselves leak confidential information.

Patch Information

Torchbox released fixes in Wagtail 7.0.7, 7.3.2, and 7.4. The patches enforce collection privacy filters consistently across the Documents and Images API list views. Patch details are published in the Wagtail Security Advisory GHSA-p5gm-92h4-6pv6.

Workarounds

  • Disable the public Documents and Images API endpoints in urls.py if upgrading immediately is not feasible.
  • Restrict API access at the reverse proxy layer to authenticated, trusted clients only.
  • Move highly sensitive assets out of Wagtail-managed collections until the upgrade is applied.
bash
# Configuration example: upgrade Wagtail 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 LTS 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 Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-280
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44197: 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