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-2023-43114

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

CVE-2023-43114 is a denial of service vulnerability in Qt's GDI font engine on Windows that causes application crashes when corrupted fonts are loaded. This article covers technical details, affected versions, and mitigations.

Published: February 11, 2026

CVE-2023-43114 Overview

CVE-2023-43114 is a denial of service vulnerability discovered in the Qt framework affecting Windows systems. The vulnerability exists in the GDI font engine implementation, where loading a corrupted font via QFontDatabase::addApplicationFont{FromData] can cause application crashes due to missing length checks. This input validation flaw allows attackers to craft malicious font files that trigger application instability.

Critical Impact

Applications built with vulnerable Qt versions on Windows can be crashed through maliciously crafted font files, potentially leading to denial of service conditions.

Affected Products

  • Qt versions before 5.15.16
  • Qt versions 6.x before 6.2.10
  • Qt versions 6.3.x through 6.5.x before 6.5.3 on Windows

Discovery Timeline

  • 2023-09-18 - CVE-2023-43114 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-43114

Vulnerability Analysis

This vulnerability stems from insufficient input validation within the Qt framework's GDI font engine on Windows platforms. When an application utilizes the QFontDatabase::addApplicationFont or QFontDatabase::addApplicationFontFromData functions to load font data, the GDI font engine fails to properly validate the length parameters of font file structures.

The absence of proper length checks means that a corrupted or maliciously crafted font file can contain invalid length values that cause the application to read beyond allocated memory boundaries or process malformed data structures. This leads to an unhandled exception condition resulting in application termination.

The vulnerability requires local access and user interaction, as an attacker must convince a user to load the malicious font file through an application using the vulnerable Qt framework. While this limits the attack surface, applications that process untrusted font files (such as document viewers, design software, or font management utilities) are particularly at risk.

Root Cause

The root cause of CVE-2023-43114 is missing length validation checks in the GDI font engine's font parsing routines. When processing font data through QFontDatabase::addApplicationFont{FromData], the code does not adequately verify that length fields within the font file structure are valid before using them in memory operations. This improper input validation allows malformed font data to trigger undefined behavior and crashes.

Attack Vector

The attack vector for this vulnerability is local, requiring an attacker to deliver a malicious font file to the target system. Exploitation scenarios include:

  1. Malicious Document Delivery: Embedding a corrupted font within a document file that an application attempts to load
  2. Direct Font File Distribution: Tricking users into installing or previewing a malicious font file
  3. Application Font Loading: Targeting applications that load fonts from untrusted sources or user-supplied data

When the vulnerable Qt application attempts to process the corrupted font data, the missing length checks cause the GDI font engine to process invalid data, resulting in an application crash. The vulnerability affects availability but does not allow for code execution or data exfiltration based on current analysis.

Detection Methods for CVE-2023-43114

Indicators of Compromise

  • Application crashes occurring during font loading operations in Qt-based applications on Windows
  • Crash dumps showing exceptions within Qt GDI font engine components
  • Presence of unusually structured or malformed font files (.ttf, .otf, .woff) in application directories
  • Windows Event Log entries indicating application failures related to font processing

Detection Strategies

  • Monitor for repeated application crashes in Qt-based software, particularly when processing external content
  • Implement file integrity monitoring for font directories and application font caches
  • Deploy endpoint detection rules to identify malformed font file characteristics
  • Review application logs for font loading errors or exceptions in QFontDatabase operations

Monitoring Recommendations

  • Enable crash reporting and analysis for Qt-based applications in the environment
  • Monitor for unusual font file activity, including downloads or creation of font files from untrusted sources
  • Implement application whitelisting to control which applications can process font files
  • Configure SentinelOne to monitor Qt-based application behavior for anomalous crash patterns

How to Mitigate CVE-2023-43114

Immediate Actions Required

  • Update Qt framework to version 5.15.16 or later for the 5.x branch
  • Update Qt framework to version 6.2.10 or later for the 6.2.x branch
  • Update Qt framework to version 6.5.3 or later for the 6.3.x through 6.5.x branches
  • Rebuild applications using the patched Qt libraries and deploy updated binaries
  • Restrict the loading of fonts from untrusted sources until patches are applied

Patch Information

Qt has released security patches addressing this vulnerability. The fix adds proper length validation checks to the GDI font engine's font parsing routines. The patch details can be reviewed at the Qt Project Code Review. Organizations should prioritize updating to the following fixed versions:

  • Qt 5.15.16 or later
  • Qt 6.2.10 or later
  • Qt 6.5.3 or later

Workarounds

  • Disable or restrict the use of QFontDatabase::addApplicationFont and QFontDatabase::addApplicationFontFromData functions in applications until patches are applied
  • Implement input validation at the application level to verify font file integrity before loading
  • Use alternative font rendering engines if available within the application architecture
  • Restrict application permissions to prevent loading fonts from untrusted locations

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechQt

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Qt Project Code Review
  • Related CVEs
  • CVE-2025-6338: Qt Network Schannel DoS Vulnerability

  • CVE-2025-5455: Qt Framework DoS Vulnerability

  • 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