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
    • 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-24675

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

CVE-2026-24675 is a use-after-free vulnerability in FreeRDP that occurs when urb_select_interface frees device MS config but later code still dereferences it. This article covers technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-24675 Overview

CVE-2026-24675 is a Use After Free vulnerability affecting FreeRDP, a free implementation of the Remote Desktop Protocol. Prior to version 3.22.0, the urb_select_interface function can free the device's MS config on error, but subsequent code continues to dereference this freed memory, leading to a use after free condition in libusb_udev_select_interface. This vulnerability enables network-based attackers to cause denial of service conditions by triggering memory corruption through maliciously crafted RDP sessions.

Critical Impact

Network-accessible use after free vulnerability in FreeRDP's USB redirection subsystem can lead to denial of service through memory corruption, affecting all unpatched versions prior to 3.22.0.

Affected Products

  • FreeRDP versions prior to 3.22.0
  • FreeRDP USB redirection client component (libusb_udev)
  • Systems utilizing FreeRDP's URBDRC (USB Redirection) channel

Discovery Timeline

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

Technical Details for CVE-2026-24675

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption flaw where a program continues to use a pointer after the memory it references has been freed. In FreeRDP's USB redirection client code, the urb_select_interface function incorrectly frees the MsConfig structure when the msusb_msinterface_replace function fails. However, the calling code in libusb_udev_select_interface continues to reference this freed memory, leading to undefined behavior.

The vulnerability is network-accessible, requiring no authentication or user interaction, making it particularly concerning for exposed RDP endpoints. Successful exploitation results in high availability impact, potentially crashing the FreeRDP client or causing unexpected behavior during USB device redirection operations.

Root Cause

The root cause lies in improper memory management within the error handling path of urb_select_interface in channels/urbdrc/client/data_transfer.c. When msusb_msinterface_replace() fails, the code incorrectly called msusb_msconfig_free(MsConfig) before returning an error. Since MsConfig is obtained from pdev->get_MsConfig(pdev) and represents the device's configuration state, freeing it on a recoverable error corrupts the device state. Subsequent operations that reference the device's MS config then access freed memory.

Attack Vector

The attack vector is network-based, leveraging FreeRDP's Remote Desktop Protocol implementation. An attacker could exploit this vulnerability by:

  1. Establishing an RDP connection with a target FreeRDP client
  2. Initiating USB device redirection through the URBDRC channel
  3. Triggering an interface selection operation that causes msusb_msinterface_replace() to fail
  4. The freed MsConfig structure is then dereferenced by subsequent code, causing memory corruption

The following patch from the FreeRDP security fix demonstrates the vulnerability and its remediation:

c
 	MSUSB_CONFIG_DESCRIPTOR* MsConfig = pdev->get_MsConfig(pdev);
 	const uint8_t InterfaceNumber = MsInterface->InterfaceNumber;
 	if (!msusb_msinterface_replace(MsConfig, InterfaceNumber, MsInterface))
-	{
-		msusb_msconfig_free(MsConfig);
 		return ERROR_BAD_CONFIGURATION;
-	}
+
 	/* complete configuration setup */
 	if (!pdev->complete_msconfig_setup(pdev, MsConfig))
 		return ERROR_BAD_CONFIGURATION;

Source: GitHub Commit Details

The patch removes the incorrect msusb_msconfig_free(MsConfig) call from the error path, ensuring the device's configuration remains valid even when interface replacement fails.

Detection Methods for CVE-2026-24675

Indicators of Compromise

  • Unexpected FreeRDP client crashes during USB device redirection operations
  • Memory corruption errors or segmentation faults in FreeRDP processes
  • Abnormal URBDRC channel activity in RDP session logs
  • Core dumps indicating use after free patterns in libusb_udev_select_interface

Detection Strategies

  • Monitor FreeRDP client processes for unexpected terminations or crash patterns
  • Implement memory debugging tools (AddressSanitizer, Valgrind) in development/testing environments to detect use after free conditions
  • Review RDP session logs for anomalous USB redirection channel behavior
  • Deploy endpoint detection solutions capable of identifying memory corruption exploitation attempts

Monitoring Recommendations

  • Enable verbose logging for FreeRDP USB redirection channels to capture potential exploitation attempts
  • Configure crash reporting and analysis for FreeRDP client applications
  • Monitor network traffic for unusual RDP session patterns targeting USB redirection functionality
  • Implement alerting on repeated FreeRDP process failures that may indicate exploitation attempts

How to Mitigate CVE-2026-24675

Immediate Actions Required

  • Upgrade all FreeRDP installations to version 3.22.0 or later immediately
  • If immediate patching is not possible, consider disabling USB device redirection functionality
  • Review and audit systems where FreeRDP is deployed with USB redirection enabled
  • Apply network segmentation to limit exposure of RDP endpoints

Patch Information

The vulnerability has been addressed in FreeRDP version 3.22.0. The security fix is available in commit d676518809c319eec15911c705c13536036af2ae. Organizations should update to the patched version as soon as possible. For detailed information, refer to the GitHub Security Advisory.

Workarounds

  • Disable USB device redirection in FreeRDP client configurations if not required for business operations
  • Restrict RDP connections to trusted networks and implement strict access controls
  • Use application-level firewalls to filter potentially malicious RDP traffic
  • Consider using alternative RDP clients until patching can be completed
bash
# Configuration example - Disable USB redirection in FreeRDP
# Add to FreeRDP command line to disable URBDRC channel
xfreerdp /v:server.example.com /dynamic-resolution -urbdrc

# Or specify in configuration file
# ~/.config/freerdp/default.rdp
# Disable USB redirection: drivestoredirect:s:

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