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-2026-23732

CVE-2026-23732: FreeRDP Buffer Overflow Vulnerability

CVE-2026-23732 is a buffer overflow flaw in FreeRDP's FastGlyph parsing that allows malicious servers to trigger client-side crashes. This article covers the technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-23732 Overview

CVE-2026-23732 is a heap buffer overflow vulnerability in FreeRDP, a free implementation of the Remote Desktop Protocol. Prior to version 3.21.0, the FastGlyph parsing code trusts the cbData/remaining length values without validating them against the minimum size implied by the glyph dimensions (cx/cy). This allows a malicious RDP server to send crafted FastGlyph orders that trigger a client-side global buffer overflow, leading to a crash and denial of service.

Critical Impact

A malicious RDP server can exploit this vulnerability to crash FreeRDP clients, causing denial of service. Organizations relying on FreeRDP for remote access may experience disruption of services.

Affected Products

  • FreeRDP versions prior to 3.21.0
  • Applications and Linux distributions bundling vulnerable FreeRDP libraries
  • Remote desktop clients built on the FreeRDP library

Discovery Timeline

  • 2026-01-19 - CVE CVE-2026-23732 published to NVD
  • 2026-01-20 - Last updated in NVD database

Technical Details for CVE-2026-23732

Vulnerability Analysis

This vulnerability exists in FreeRDP's handling of FastGlyph orders, which are part of the RDP protocol used to efficiently transmit glyph (character/font) data from server to client. The flaw is classified as CWE-122 (Heap-based Buffer Overflow).

When processing incoming FastGlyph orders, the client parses glyph data based on the cbData field provided by the server. The vulnerable code path fails to validate that this data length is sufficient to accommodate the glyph dimensions specified by the cx (width) and cy (height) fields. A malicious server can provide dimensions that imply a larger data requirement than the actual buffer allocated, causing subsequent operations to write beyond the buffer boundaries.

The vulnerability affects multiple components within the FreeRDP codebase, including the glyph cache module (glyph.c), color handling (color.c), graphics rendering (graphics.c), and order processing (orders.c).

Root Cause

The root cause is insufficient input validation in the FastGlyph parsing routine. The code trusts server-supplied cbData and remaining length values without computing and verifying the minimum buffer size required based on the glyph dimensions (cx × cy). This missing bounds check allows the server to specify arbitrary dimensions while providing an undersized data buffer, leading to heap corruption when the client attempts to process the glyph data.

Attack Vector

The attack vector is network-based, requiring a victim to connect to a malicious RDP server. The attacker operates a rogue RDP server that sends specially crafted FastGlyph orders containing mismatched dimension values and data lengths. When a vulnerable FreeRDP client connects and processes these orders, the buffer overflow occurs.

The exploitation scenario involves a victim client initiating an RDP connection to an attacker-controlled server. The server responds with malformed FastGlyph orders where cx/cy values imply a data size larger than cbData. The client allocates a buffer based on cbData but processes data as if it were sized according to cx/cy, resulting in out-of-bounds memory access. For technical implementation details, refer to the GitHub Security Advisory GHSA-7qxp-j2fj-c3pp and the associated source code review.

Detection Methods for CVE-2026-23732

Indicators of Compromise

  • Unexpected FreeRDP client crashes when connecting to RDP servers
  • Core dumps or crash logs showing segmentation faults in glyph.c, color.c, graphics.c, or orders.c modules
  • Anomalous RDP traffic containing malformed FastGlyph orders with mismatched dimension and data length fields

Detection Strategies

  • Monitor FreeRDP client processes for abnormal termination signals (SIGSEGV, SIGABRT)
  • Implement network intrusion detection rules to identify RDP sessions with suspicious FastGlyph order patterns
  • Deploy endpoint detection to alert on repeated FreeRDP crashes that may indicate active exploitation attempts

Monitoring Recommendations

  • Enable verbose logging in FreeRDP clients to capture order processing details
  • Monitor system logs for repeated application crashes associated with xfreerdp or custom FreeRDP-based applications
  • Track connections to untrusted or unknown RDP servers in network flow data

How to Mitigate CVE-2026-23732

Immediate Actions Required

  • Upgrade FreeRDP to version 3.21.0 or later immediately
  • Audit all systems and applications using FreeRDP libraries and update accordingly
  • Restrict RDP connections to trusted, known servers only
  • Implement network segmentation to limit exposure of FreeRDP clients to potentially malicious servers

Patch Information

The FreeRDP project has addressed this vulnerability in version 3.21.0. The patch adds proper validation to ensure that the cbData/remaining length values are checked against the minimum size required by the glyph dimensions (cx/cy) before processing. Users should upgrade to FreeRDP version 3.21.0 or later. For detailed information about the fix, consult the GitHub Security Advisory.

Workarounds

  • Avoid connecting to untrusted or unknown RDP servers until patching is complete
  • Use network-level controls (firewalls, VPNs) to restrict RDP connectivity to verified internal servers
  • Consider using alternative RDP clients if immediate patching is not feasible
  • Implement application whitelisting to control which RDP servers clients can connect to
bash
# Verify FreeRDP version to ensure patched version is installed
xfreerdp --version
# Expected output should show version 3.21.0 or higher

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechFreerdp

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:P/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-122
  • Technical References
  • FreeRDP Glyph Code Review

  • FreeRDP Color Code Review

  • FreeRDP Graphics Code Review

  • FreeRDP Orders Code Review

  • FreeRDP Version 3.21.0 Release

  • GitHub Security Advisory GHSA-7qxp-j2fj-c3pp
  • Related CVEs
  • CVE-2026-33982: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-33984: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-33986: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-33987: FreeRDP Buffer Overflow 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