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

CVE-2026-27457: Weblate Information Disclosure Flaw

CVE-2026-27457 is an information disclosure vulnerability in Weblate that exposes addon data across all projects to unauthorized users. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 27, 2026

CVE-2026-27457 Overview

CVE-2026-27457 is an authorization bypass vulnerability in Weblate, a popular web-based localization tool used for software translation management. The vulnerability exists in the REST API's AddonViewSet class located in weblate/api/views.py. The implementation uses queryset = Addon.objects.all() without overriding the get_queryset() method to properly scope results based on user permissions. This allows any authenticated user (or anonymous users if REQUIRE_LOGIN is not enabled) to enumerate and retrieve all addon configurations across all projects and components via the GET /api/addons/ and GET /api/addons/{id}/ API endpoints.

Critical Impact

Unauthorized users can access addon configuration data across all Weblate projects and components, potentially exposing sensitive integration details and internal project structures.

Affected Products

  • Weblate versions prior to 5.16.1

Discovery Timeline

  • 2026-02-26 - CVE-2026-27457 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-27457

Vulnerability Analysis

The vulnerability stems from a missing access control implementation in the AddonViewSet class within Weblate's REST API. Django REST Framework ViewSets use the queryset attribute to determine which database objects can be accessed through the API endpoints. By setting queryset = Addon.objects.all() without implementing a get_queryset() method that filters results based on the authenticated user's permissions, the API exposes all addon records to any user who can access the endpoint.

This design flaw represents a classic Broken Access Control (CWE-200) vulnerability where the application fails to enforce object-level authorization. The exposure is particularly concerning because addon configurations may contain sensitive information about project integrations, third-party service connections, and internal workflow details.

Root Cause

The root cause is the absence of permission-based filtering in the AddonViewSet class. The original implementation directly used Addon.objects.all() as the queryset, which returns all addon objects from the database without considering user permissions. The proper implementation should override get_queryset() to filter addons based on the requesting user's project membership and management permissions.

Attack Vector

An attacker can exploit this vulnerability by making authenticated API requests to enumerate addon configurations. If the Weblate instance has REQUIRE_LOGIN disabled, even anonymous users can access this data. The attack requires only network access to the Weblate API endpoints.

python
# Vulnerable code in weblate/api/views.py (before fix)
class AddonViewSet(viewsets.ReadOnlyModelViewSet, UpdateModelMixin, DestroyModelMixin):
    queryset = Addon.objects.all()  # No permission filtering
    serializer_class = AddonSerializer

Source: GitHub Weblate Commit Fix

python
# Fixed implementation with proper access control
    def get_queryset(self):
        if self.request.user.has_perm("management.addons"):
            return Addon.objects.order_by("id")
        return Addon.objects.filter(
            Q(project__in=self.request.user.managed_projects)
            | Q(component__project__in=self.request.user.managed_projects)
        ).order_by("id")

Source: GitHub Weblate Commit Fix

Detection Methods for CVE-2026-27457

Indicators of Compromise

  • Unusual volume of API requests to /api/addons/ endpoints from non-administrative users
  • API access logs showing addon enumeration requests from users without project membership
  • Requests to /api/addons/{id}/ endpoints where the ID belongs to projects the user should not have access to

Detection Strategies

  • Monitor API access logs for requests to /api/addons/ endpoints and correlate with user permission levels
  • Implement rate limiting on API endpoints to detect enumeration attempts
  • Enable verbose logging for Django REST Framework to capture unauthorized access attempts
  • Review authentication logs for anonymous access to addon endpoints when REQUIRE_LOGIN should be enforced

Monitoring Recommendations

  • Configure alerting for API requests to addon endpoints from users without appropriate project permissions
  • Set up monitoring for bulk API requests that may indicate enumeration behavior
  • Implement audit logging for all addon-related API operations
  • Review access patterns periodically to identify potential data exfiltration attempts

How to Mitigate CVE-2026-27457

Immediate Actions Required

  • Upgrade Weblate to version 5.16.1 or later immediately
  • Enable REQUIRE_LOGIN in Weblate configuration if not already enabled to prevent anonymous access
  • Review API access logs for any suspicious addon enumeration activity prior to patching
  • Audit addon configurations for any sensitive information that may have been exposed

Patch Information

The vulnerability is fixed in Weblate version 5.16.1. The fix implements a get_queryset() method that properly filters addons based on user permissions, restricting access to addons within projects the user has management access to. Users with the management.addons permission retain access to all addons. The security patches are available in commits 3f58f9a and 7802c9b. For full details, see the GitHub Security Advisory and release notes for version 5.16.1.

Workarounds

  • Enable REQUIRE_LOGIN = True in Weblate settings to prevent anonymous API access while awaiting the upgrade
  • Implement reverse proxy rules to restrict access to /api/addons/ endpoints to trusted IP addresses
  • Use network segmentation to limit API access to authorized internal networks only
  • Consider temporarily disabling external API access until the patch is applied
bash
# Configuration example - Enable REQUIRE_LOGIN in Weblate settings.py
REQUIRE_LOGIN = True

# Or via environment variable
export WEBLATE_REQUIRE_LOGIN=1

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

  • SeverityMEDIUM

  • CVSS Score4.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • GitHub Weblate Commit Update

  • GitHub Weblate Commit Fix

  • GitHub Weblate Pull Request

  • GitHub Weblate Pull Request

  • GitHub Weblate Release Notes

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33212: Weblate Information Disclosure Flaw

  • CVE-2026-21889: 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