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

CVE-2026-33440: Weblate Redirect Validation Vulnerability

CVE-2026-33440 is a redirect validation flaw in Weblate that allows bypassing ALLOWED_ASSET_DOMAINS restrictions. This post covers the security issue, affected versions prior to 5.17, and available fixes.

Published: April 17, 2026

CVE-2026-33440 Overview

CVE-2026-33440 is a Server-Side Request Forgery (SSRF) vulnerability in Weblate, a popular web-based localization and translation management tool. In versions prior to 5.17, the ALLOWED_ASSET_DOMAINS setting, which is designed to restrict which external domains can be used for downloading assets like screenshots, only validated the initial request URL. It failed to validate any subsequent HTTP redirect targets, allowing attackers to bypass the domain allowlist through redirect chains.

Critical Impact

Authenticated users can bypass domain restrictions by using redirects to access internal or restricted resources, potentially leading to information disclosure from internal systems.

Affected Products

  • Weblate versions prior to 5.17

Discovery Timeline

  • April 15, 2026 - CVE-2026-33440 published to NVD
  • April 15, 2026 - Last updated in NVD database

Technical Details for CVE-2026-33440

Vulnerability Analysis

This vulnerability stems from incomplete input validation in Weblate's asset download functionality. When users upload screenshots or other assets via URL, Weblate downloads the content server-side to store it locally. The ALLOWED_ASSET_DOMAINS configuration setting was intended to restrict which external domains could be used for these downloads. However, the implementation only checked the initial URL against the allowlist, leaving a significant gap in the security control.

An authenticated user could exploit this by providing an allowed initial URL that redirects to an unauthorized target. Since HTTP redirect responses weren't validated against the domain allowlist, the server would follow redirects to any destination, including internal network resources, cloud metadata endpoints, or other restricted services.

Root Cause

The root cause is a CWE-918 (Server-Side Request Forgery) issue where the domain validation logic was applied inconsistently. The allowlist check occurred only once during the initial request phase, without extending validation to cover the complete redirect chain that HTTP clients commonly follow.

Attack Vector

An attacker with low-privilege authenticated access to Weblate can craft a malicious URL pointing to an allowed domain that serves an HTTP redirect (301, 302, 307, or 308) to an internal or otherwise restricted target. The attack scenario proceeds as follows:

  1. Attacker sets up a redirect on an allowed domain or finds an open redirect on a trusted site
  2. Attacker provides this URL when uploading a screenshot via URL
  3. Weblate server validates the initial URL against ALLOWED_ASSET_DOMAINS (passes)
  4. Server follows the redirect without re-validating the destination
  5. Server fetches content from the unauthorized destination, potentially exposing internal data

The fix ensures that every redirect target is validated against the ALLOWED_ASSET_DOMAINS allowlist before the server follows it.

text
 Assets are downloaded once by the Weblate server and stored locally, rather than
 being served directly from external domains to users.
 
+The allowlist is applied to the initial URL and to every HTTP redirect target
+before Weblate follows it. Redirects to hosts outside of this allowlist are
+rejected.
+
 It expects a list of host/domain names. You can use fully qualified names
 (e.g ``www.example.com``) or prepend with a period as a wildcard to match
 all subdomains (e.g ``.example.com`` will match ``cdn.example.com`` or ``static.example.com``).
 
-Defaults to `[*]` which will allow all domains.
+Defaults to ``["*"]``, which allows all domains.
 
 **Example**

Source: GitHub Commit Reference

Detection Methods for CVE-2026-33440

Indicators of Compromise

  • Unusual outbound HTTP requests from the Weblate server to internal IP addresses or cloud metadata endpoints (e.g., 169.254.169.254)
  • Screenshot upload requests with URLs containing known open redirect patterns
  • HTTP redirect chains in server logs leading to unexpected destinations
  • Asset download attempts targeting localhost, private IP ranges, or internal hostnames

Detection Strategies

  • Monitor Weblate application logs for screenshot URL uploads that result in multiple redirects
  • Implement network monitoring to detect SSRF attempts targeting internal services from the Weblate server
  • Review web server access logs for redirect patterns that could indicate exploitation attempts
  • Deploy web application firewall rules to detect and block common SSRF payloads in URL parameters

Monitoring Recommendations

  • Configure alerting for any outbound connections from the Weblate server to internal network ranges
  • Enable verbose logging for the asset download functionality to capture full redirect chains
  • Monitor for authentication anomalies followed by bulk asset upload attempts

How to Mitigate CVE-2026-33440

Immediate Actions Required

  • Upgrade Weblate to version 5.17 or later immediately
  • Review ALLOWED_ASSET_DOMAINS configuration and ensure it does not use the default wildcard ["*"]
  • Audit recent screenshot uploads for any suspicious URLs or redirect patterns
  • Implement network segmentation to limit the Weblate server's access to internal resources

Patch Information

The vulnerability has been addressed in Weblate version 5.17. The fix extends the domain allowlist validation to cover every HTTP redirect target before the server follows it. The patch is available in commit 8be80625a864c8db5854503872a65e8a0b7399a6. For full details, refer to the GitHub Security Advisory GHSA-5fhx-9jwj-867m.

Workarounds

  • Configure ALLOWED_ASSET_DOMAINS with an explicit list of trusted domains instead of the wildcard default
  • Implement network-level controls to prevent the Weblate server from accessing internal resources
  • Disable URL-based screenshot uploads if the feature is not required
bash
# Configuration example - weblate/settings.py
# Restrict asset downloads to specific trusted domains
ALLOWED_ASSET_DOMAINS = [
    "cdn.example.com",
    ".trusted-assets.org",
]
# Avoid using ["*"] which allows all domains

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechWeblate

  • SeverityMEDIUM

  • CVSS Score5.0

  • EPSS Probability0.03%

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

  • GitHub Security Advisory GHSA-5fhx-9jwj-867m
  • Related CVEs
  • CVE-2026-24126: Weblate Argument Injection Vulnerability

  • CVE-2026-22250: Weblate wlc Client SSL Bypass Vulnerability

  • CVE-2026-40256: Weblate Path Traversal Vulnerability

  • CVE-2026-39845: Weblate Webhook SSRF 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