Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-21889

CVE-2026-21889: Weblate Information Disclosure Flaw

CVE-2026-21889 is an information disclosure vulnerability in Weblate that allows unauthenticated users to access screenshot images by guessing filenames. This article covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-21889 Overview

CVE-2026-21889 is an improper access control vulnerability in Weblate, a web-based localization tool. Prior to version 5.15.2, screenshot images were served directly by the HTTP server without proper access control mechanisms. This flaw allows unauthenticated users to potentially access screenshot files by guessing their filenames, leading to information disclosure.

Critical Impact

Unauthenticated users may access sensitive screenshot images by guessing filenames, potentially exposing confidential translation project content and internal application interfaces.

Affected Products

  • Weblate versions prior to 5.15.2

Discovery Timeline

  • 2026-01-14 - CVE-2026-21889 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2026-21889

Vulnerability Analysis

This vulnerability falls under CWE-284 (Improper Access Control), where the application fails to properly restrict access to screenshot resources. The core issue stems from Weblate's architecture for serving static media files. Screenshot images uploaded to translation projects were stored in the /media/ directory and served directly by the HTTP server without authentication checks.

The network-accessible attack vector requires an attacker to guess or enumerate screenshot filenames. While the attack complexity is elevated due to the filename guessing requirement, successful exploitation could expose sensitive visual content from translation projects, including application screenshots containing proprietary interfaces, unreleased features, or confidential business information.

Root Cause

The root cause lies in the improper separation between authenticated application resources and static file serving. The /media/ directory was configured to serve screenshot files directly through the web server without routing requests through Weblate's authentication layer. This architectural decision prioritized performance over security, allowing any user with knowledge of the file path to access screenshots without authentication.

Attack Vector

An attacker can exploit this vulnerability through the following mechanism:

  1. Identify the Weblate instance's media URL structure (typically /media/screenshots/)
  2. Attempt to enumerate or guess screenshot filenames
  3. Directly request screenshot URLs without authentication
  4. Access potentially sensitive visual content from translation projects

The fix implemented in version 5.15.2 introduces a proxied screenshot view that routes all screenshot requests through the application's access control layer, ensuring only authorized users can access these resources.

The following documentation patch shows how the vulnerability was addressed:

text
 Serving static files
 ++++++++++++++++++++
 
+.. versionchanged:: 5.15.2
+   :file:`/media/` is no longer used for serving screenshots.
+
 Django needs to collect its static files in a single directory. To do so,
 execute :samp:`weblate collectstatic --noinput`. This will copy the static
 files into a directory specified by the :setting:`django:STATIC_ROOT` setting (this defaults to

Source: GitHub Commit Details

The Docker configuration was also updated to remove direct media URL serving:

text
 
    Configures URL prefix where Weblate is running, see :setting:`URL_PREFIX`.
 
-.. envvar:: WEBLATE_MEDIA_URL
-
-   Configures URL that handles the media served from
-   :setting:`django:MEDIA_ROOT`.
-
 .. envvar:: WEBLATE_STATIC_URL
 
    Configures URL prefix for static files server from :setting:`CACHE_DIR`.

Source: GitHub Commit Details

Detection Methods for CVE-2026-21889

Indicators of Compromise

  • Unusual access patterns to /media/screenshots/ or similar media paths from unauthenticated sessions
  • HTTP 200 responses for screenshot requests without corresponding authentication tokens
  • Sequential or enumeration-style requests to media URLs suggesting filename brute-forcing
  • Access logs showing direct media file requests bypassing the application layer

Detection Strategies

  • Monitor web server access logs for requests to /media/ paths that bypass application routing
  • Implement alerting on high-volume requests to static media directories from single IP addresses
  • Review Weblate version deployed and compare against the patched version 5.15.2
  • Audit web server configuration to verify screenshot requests are properly proxied through Weblate

Monitoring Recommendations

  • Enable detailed access logging on the web server for all media directory requests
  • Configure rate limiting on media endpoints to prevent enumeration attacks
  • Set up alerts for failed or anomalous access attempts to screenshot directories
  • Regularly audit project screenshots for sensitive content that could be exposed

How to Mitigate CVE-2026-21889

Immediate Actions Required

  • Upgrade Weblate to version 5.15.2 or later immediately
  • Review access logs for any unauthorized access to screenshot files prior to patching
  • Audit existing screenshots for sensitive content and consider removing or restricting access
  • Verify web server configuration no longer serves /media/ directly after upgrade

Patch Information

The vulnerability is fixed in Weblate version 5.15.2. The patch introduces a proxied screenshot view that enforces proper access control. Organizations should upgrade to this version or later to remediate the vulnerability.

For detailed patch information, refer to:

  • GitHub Security Advisory GHSA-3g2f-4rjg-9385
  • GitHub Pull Request #17516
  • GitHub Commit a6eb5fd

Workarounds

  • Restrict access to the /media/ directory at the web server level using authentication rules
  • Implement IP-based access restrictions for media directories if upgrading is not immediately possible
  • Move sensitive screenshots to a non-web-accessible location temporarily
  • Configure web server to proxy all media requests through Weblate's application layer
bash
# Example nginx configuration to restrict media access (temporary workaround)
# Add authentication requirement for media directory
location /media/ {
    auth_basic "Restricted";
    auth_basic_user_file /etc/nginx/.htpasswd;
    alias /path/to/weblate/media/;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechWeblate

  • SeverityLOW

  • CVSS Score2.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:L/UI:N/VC:L/VI:N/VA:N/SC:L/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Commit Details

  • GitHub Pull Request

  • GitHub Security Advisory GHSA-3g2f-4rjg-9385
  • Related CVEs
  • CVE-2026-33212: Weblate Information Disclosure Flaw

  • CVE-2026-27457: Weblate Information Disclosure Flaw

  • CVE-2026-22251: Weblate CLI API Key Leak Vulnerability

  • CVE-2026-40256: Weblate Path Traversal 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