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

CVE-2026-24491: FreeRDP Use After Free Vulnerability

CVE-2026-24491 is a use after free vulnerability in FreeRDP that occurs when video_timer sends notifications after the control channel closes. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 13, 2026

CVE-2026-24491 Overview

CVE-2026-24491 is a use after free vulnerability affecting FreeRDP, a free implementation of the Remote Desktop Protocol. Prior to version 3.22.0, the video_timer component can send client notifications after the control channel is closed, dereferencing a freed callback and triggering a use after free condition. This vulnerability allows remote attackers to cause a denial of service through network-based attacks without requiring authentication or user interaction.

Critical Impact

Remote attackers can exploit this use after free vulnerability to crash FreeRDP clients, resulting in denial of service through network-based attacks that require no authentication.

Affected Products

  • FreeRDP versions prior to 3.22.0
  • FreeRDP-based RDP clients and implementations
  • Systems utilizing FreeRDP libraries for Remote Desktop connections

Discovery Timeline

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

Technical Details for CVE-2026-24491

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption vulnerability that occurs when a program continues to use a memory pointer after the memory has been freed. In FreeRDP, the issue arises within the video_timer component, which manages video stream timing during Remote Desktop Protocol sessions.

The core issue is a race condition in the cleanup sequence where the video_timer component attempts to send client notifications through a callback function after the associated control channel has already been closed and deallocated. When this occurs, the code dereferences a pointer to memory that has already been freed, leading to undefined behavior that typically manifests as a crash.

The vulnerability is exploitable over the network without requiring any authentication or user interaction, making it particularly dangerous for exposed FreeRDP deployments. While the primary impact is availability (denial of service), use after free vulnerabilities can sometimes be escalated to achieve code execution in certain memory configurations.

Root Cause

The root cause is improper synchronization between the video_timer component and the control channel lifecycle management. When a Remote Desktop session terminates or the control channel closes, the callback structures are deallocated. However, the video_timer component may still have pending notifications queued that reference these now-freed callback structures. Without proper lifecycle checks or synchronization primitives, the timer attempts to invoke the freed callback, resulting in the use after free condition.

Attack Vector

The attack vector is network-based, as indicated by the vulnerability's characteristics. An attacker can trigger this vulnerability by manipulating the timing of RDP session operations to cause the control channel to close while video timer notifications are still pending. This can be achieved through:

  1. Malicious RDP Server - A compromised or malicious RDP server could manipulate protocol messages to trigger the race condition in connected FreeRDP clients
  2. Network Manipulation - An attacker with network access could inject or modify RDP traffic to cause unexpected channel closures during video playback
  3. Session Termination Timing - Abrupt disconnection scenarios during active video streaming could reliably trigger the vulnerable code path

The vulnerability mechanism centers on the asynchronous nature of the video timer. When the control channel closes, the cleanup code frees the callback structures, but outstanding timer events remain scheduled. When these timer events fire and attempt to invoke the callback, the dereferenced pointer points to freed memory, causing the use after free condition.

For technical implementation details, see the GitHub Security Advisory.

Detection Methods for CVE-2026-24491

Indicators of Compromise

  • Unexpected FreeRDP client crashes during RDP sessions, particularly those involving video content
  • Memory access violations or segmentation faults in FreeRDP process logs
  • Abnormal RDP session terminations coinciding with video stream activity
  • Core dumps from FreeRDP processes showing stack traces involving video_timer functions

Detection Strategies

  • Monitor for FreeRDP process crashes using system crash handlers and logging infrastructure
  • Implement application-level monitoring for unexpected RDP client terminations
  • Deploy network monitoring to detect anomalous RDP traffic patterns that might indicate exploitation attempts
  • Configure endpoint detection solutions to alert on memory corruption indicators in FreeRDP processes

Monitoring Recommendations

  • Enable detailed logging for FreeRDP client connections and session lifecycle events
  • Set up automated alerting for FreeRDP process crashes in production environments
  • Monitor network traffic for unusual RDP protocol sequences targeting video channels
  • Implement crash dump collection and analysis pipelines to identify exploitation patterns

How to Mitigate CVE-2026-24491

Immediate Actions Required

  • Upgrade FreeRDP to version 3.22.0 or later immediately
  • If immediate upgrade is not possible, consider restricting RDP connections to trusted servers only
  • Review and limit network exposure of systems running vulnerable FreeRDP versions
  • Implement network segmentation to reduce attack surface for RDP-enabled systems

Patch Information

The vulnerability is fixed in FreeRDP version 3.22.0. The fix addresses the synchronization issue between the video_timer component and control channel lifecycle, ensuring callbacks are properly invalidated before the control channel is freed. The patch can be reviewed at the GitHub Commit Details.

Organizations should prioritize upgrading to FreeRDP 3.22.0 or later. For systems using FreeRDP as a library, ensure dependent applications are rebuilt against the patched version.

Workarounds

  • Disable video redirection features in FreeRDP if not required for operations (/video:off or equivalent configuration)
  • Restrict RDP connections to known, trusted servers using firewall rules or connection policies
  • Implement network-level controls to prevent connections to untrusted RDP endpoints
  • Consider using alternative RDP clients until patching is complete
bash
# Example: Disable video redirection when connecting
xfreerdp /v:server.example.com /video:off /u:username

# Example: Firewall rule to restrict RDP outbound to trusted servers only
iptables -A OUTPUT -p tcp --dport 3389 -d trusted.server.ip -j ACCEPT
iptables -A OUTPUT -p tcp --dport 3389 -j DROP

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 Score7.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: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
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Vendor Resources
  • GitHub Commit Details

  • 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