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

CVE-2026-24680: FreeRDP Use-After-Free Vulnerability

CVE-2026-24680 is a use-after-free vulnerability in FreeRDP that occurs when sdl_Pointer_New frees data on failure, leading to double-free conditions. This article covers the technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-24680 Overview

CVE-2026-24680 is a Use-After-Free vulnerability in FreeRDP, a free implementation of the Remote Desktop Protocol. Prior to version 3.22.0, the sdl_Pointer_New function frees data on failure, but subsequently pointer_free calls sdl_Pointer_Free and frees the same memory again, triggering a double-free condition that was detected by AddressSanitizer (ASan) as a Use-After-Free. This vulnerability affects the SDL3 client component of FreeRDP and can be exploited remotely over the network.

Critical Impact

Remote attackers can exploit this Use-After-Free vulnerability to cause denial of service conditions through memory corruption, potentially crashing FreeRDP client sessions.

Affected Products

  • FreeRDP versions prior to 3.22.0
  • FreeRDP SDL3 client implementations
  • Systems using FreeRDP for Remote Desktop Protocol connections

Discovery Timeline

  • 2026-02-09 - CVE-2026-24680 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-24680

Vulnerability Analysis

This Use-After-Free vulnerability (CWE-416) occurs in the SDL3 pointer handling code within FreeRDP's client implementation. The flaw manifests when memory allocated for pointer data is freed during error handling in sdl_Pointer_New, but the pointer variable is not reset to null. Subsequently, when pointer_free invokes sdl_Pointer_Free, the code attempts to free the already-released memory, resulting in undefined behavior.

Use-After-Free vulnerabilities are particularly dangerous because they can lead to memory corruption, program crashes, and in some scenarios, arbitrary code execution. The vulnerability is exploitable remotely over the network, requiring no user interaction or authentication, which makes it accessible to unauthenticated attackers targeting FreeRDP client sessions.

Root Cause

The root cause is improper memory management in the sdl_pointer.cpp file within the SDL3 client code. When sdl_Pointer_New encounters a failure condition, it correctly frees the allocated memory using winpr_aligned_free(ptr->data), but fails to set ptr->data to nullptr. This leaves a dangling pointer that is later accessed and freed again by the cleanup routine, causing the Use-After-Free condition.

Attack Vector

The attack vector is network-based, allowing remote exploitation without requiring authentication or user interaction. An attacker could potentially craft malicious RDP session data that triggers the error condition in pointer handling, causing the double-free scenario. This would result in denial of service through client crashes.

cpp
// Security patch from client/SDL/SDL3/sdl_pointer.cpp
// Source: https://github.com/FreeRDP/FreeRDP/commit/c42ecbd183b001e76bfc3614cddfad0034acc758

 	        &context->gdi->palette))
 	{
 		winpr_aligned_free(ptr->data);
+		ptr->data = nullptr;
 		return FALSE;
 	}

The fix ensures that after freeing the pointer data, it is immediately set to nullptr, preventing the subsequent double-free when cleanup routines attempt to free the memory again.

Detection Methods for CVE-2026-24680

Indicators of Compromise

  • Unexpected FreeRDP client crashes during RDP sessions
  • Memory corruption errors or segmentation faults in FreeRDP processes
  • AddressSanitizer (ASan) reports indicating Use-After-Free conditions in SDL pointer functions
  • Abnormal RDP connection terminations without user initiation

Detection Strategies

  • Monitor FreeRDP client processes for unexpected terminations or crash dumps
  • Deploy memory debugging tools like AddressSanitizer on development and testing systems to detect UAF conditions
  • Implement logging for FreeRDP client session failures and analyze patterns
  • Use endpoint detection solutions to identify crash signatures associated with this vulnerability

Monitoring Recommendations

  • Enable detailed logging for FreeRDP client applications to capture error conditions
  • Monitor system logs for repeated crashes of FreeRDP processes
  • Configure crash reporting mechanisms to collect and analyze FreeRDP client failures
  • Track network connections to RDP endpoints for suspicious activity patterns

How to Mitigate CVE-2026-24680

Immediate Actions Required

  • Upgrade FreeRDP to version 3.22.0 or later immediately
  • Review deployment environments for affected FreeRDP versions
  • Temporarily disable FreeRDP SDL3 clients if upgrade is not immediately possible
  • Implement network segmentation to limit exposure of vulnerable FreeRDP clients

Patch Information

FreeRDP has released version 3.22.0 which includes the fix for this vulnerability. The patch adds a critical null pointer assignment after memory deallocation to prevent the double-free condition. Organizations should apply this update as soon as possible.

The specific fix can be reviewed in the GitHub commit c42ecbd. Additional details are available in the GitHub Security Advisory GHSA-j893-9wg8-33rc.

Workarounds

  • Use alternative RDP clients until patching is complete
  • Restrict network access to systems running vulnerable FreeRDP versions
  • Monitor FreeRDP client sessions for unusual behavior or crashes
  • Consider using the non-SDL client implementations if available and applicable to your environment
bash
# Upgrade FreeRDP to patched version
# For package manager installations:
apt update && apt install freerdp2-x11

# For source installations, build from the patched version:
git clone https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
git checkout 3.22.0
cmake -B build
cmake --build build
sudo cmake --install build

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechFreerdp

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/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:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33995: FreeRDP Use-After-Free Vulnerability

  • CVE-2026-31897: FreeRDP Use-After-Free Vulnerability

  • CVE-2026-25959: FreeRDP Use After Free Vulnerability

  • CVE-2026-25955: FreeRDP Use-After-Free 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