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
    • 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-2025-5455

CVE-2025-5455: Qt Framework DoS Vulnerability

CVE-2025-5455 is a denial of service vulnerability in Qt Framework's qDecodeDataUrl() function that triggers assertion failures with malformed data URLs. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-5455 Overview

A denial of service vulnerability has been discovered in the private API function qDecodeDataUrl() within Qt's QtCore library. This function is utilized by QTextDocument and QNetworkReply components, as well as potentially in user-developed applications that leverage Qt's data URL parsing capabilities.

When qDecodeDataUrl() is called with malformed input data—specifically a URL containing a "charset" parameter that lacks a value (such as data:charset,)—and Qt has been built with assertions enabled, the function triggers an assertion failure. This results in an immediate abort of the application, causing a denial of service condition.

Critical Impact

Applications built on affected Qt versions with assertions enabled can be crashed remotely by providing malformed data URLs, leading to denial of service. This affects core Qt functionality used in network requests and document processing.

Affected Products

  • Qt versions up to and including 5.15.18
  • Qt versions 6.0.0 through 6.5.8
  • Qt versions 6.6.0 through 6.8.3
  • Qt version 6.9.0

Discovery Timeline

  • June 2, 2025 - CVE-2025-5455 published to NVD
  • June 2, 2025 - Last updated in NVD database

Technical Details for CVE-2025-5455

Vulnerability Analysis

This vulnerability stems from improper input validation (CWE-20) in the qDecodeDataUrl() function. The function fails to properly handle edge cases where a data URL contains a malformed charset parameter. In Qt builds compiled with assertions enabled (-DQT_FORCE_ASSERTS or debug builds), encountering this malformed input causes an assertion to trigger, which immediately terminates the application via abort().

The vulnerability is particularly concerning because the affected function is used by fundamental Qt classes like QTextDocument for rendering rich text content and QNetworkReply for handling network responses. Any application that processes untrusted data URLs through these components could be vulnerable to exploitation.

Root Cause

The root cause lies in the inadequate validation of the charset parameter within data URL parsing. When the parser encounters a charset parameter followed by a comma but no actual value (e.g., data:charset,), it fails to handle this boundary condition gracefully. Instead of returning an error or using a default charset, the code path leads to an assertion that expects a non-empty charset value.

The lack of defensive programming in handling malformed input allows an attacker to craft specifically malformed data URLs that trigger the assertion failure, resulting in application termination.

Attack Vector

The attack can be executed remotely over the network (AV:N) with low complexity. An attacker needs to deliver a malformed data URL to a victim application through various channels:

  1. Network Responses: If an application uses QNetworkReply to fetch content from attacker-controlled servers, the malicious data URL can be embedded in the response
  2. Rich Text Content: Applications using QTextDocument to render HTML or rich text content can be targeted by embedding malformed data URLs in documents
  3. User Input Processing: Any application that processes user-supplied URLs without proper sanitization may be vulnerable

The vulnerability requires user interaction (UI:A) in most scenarios, as the victim application needs to process the attacker-supplied content. However, automated processing of network content could be exploited without direct user action.

Detection Methods for CVE-2025-5455

Indicators of Compromise

  • Application crash logs showing assertion failures in Qt's URL parsing functions
  • Core dumps or crash reports referencing qDecodeDataUrl() or related QtCore functions
  • Sudden termination of Qt-based applications when processing external content
  • Network traffic containing data URLs with malformed charset parameters (pattern: data:charset,)

Detection Strategies

  • Monitor application logs for unexpected termination events or assertion failures
  • Implement network intrusion detection rules to identify data URLs with empty charset parameters
  • Review crash reports and core dumps for patterns indicating exploitation attempts
  • Deploy application-level monitoring to detect abnormal process terminations in Qt-based applications

Monitoring Recommendations

  • Enable enhanced logging for Qt applications to capture URL parsing activities
  • Implement crash reporting mechanisms to quickly identify potential exploitation attempts
  • Monitor network traffic for suspicious data URL patterns targeting Qt applications
  • Set up alerts for repeated application crashes that may indicate ongoing attack attempts

How to Mitigate CVE-2025-5455

Immediate Actions Required

  • Upgrade Qt to patched versions: 5.15.19, 6.5.9, 6.8.4, or 6.9.1
  • Review and audit any custom code that uses qDecodeDataUrl() directly
  • Implement input validation to sanitize data URLs before processing
  • Consider disabling assertions in production builds if immediate patching is not possible (note: this is a temporary workaround only)

Patch Information

Qt has released security patches addressing this vulnerability. The fix is available in the following versions:

  • Qt 5.15.19 and later for the 5.x branch
  • Qt 6.5.9 and later for the 6.5 LTS branch
  • Qt 6.8.4 and later for the 6.8 branch
  • Qt 6.9.1 and later for the 6.9 branch

The patch details can be reviewed at the Qt Project Code Review. Organizations should prioritize upgrading to the patched versions to eliminate this vulnerability.

Workarounds

  • Build Qt without assertions enabled for production deployments (reduces attack surface but may mask other issues)
  • Implement application-level input filtering to reject data URLs with empty or malformed charset parameters
  • Use network-level filtering to block requests containing suspicious data URL patterns
  • Isolate Qt-based applications that process untrusted content in sandboxed environments

If upgrading is not immediately feasible, organizations should implement defense-in-depth measures including input validation at the application boundary. However, the recommended mitigation is to apply the official patches as soon as possible.

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechQt

  • SeverityHIGH

  • CVSS Score8.4

  • EPSS Probability0.12%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:H/VA:H/SC:N/SI:H/SA:H/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:U/V:X/RE:M/U:Clear
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-20
  • Technical References
  • Qt Project Code Review
  • Related CVEs
  • CVE-2025-6338: Qt Network Schannel DoS Vulnerability

  • CVE-2023-43114: Qt Framework DOS Vulnerability on Windows

  • CVE-2024-39936: Qt HTTP2 Privilege Escalation Vulnerability

  • CVE-2024-36048: Qt Network Authorization Vulnerability
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