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

CVE-2026-24676: FreeRDP Use After Free Vulnerability

CVE-2026-24676 is a use after free vulnerability in FreeRDP's AUDIN format renegotiation that can be exploited during audio capture. This article covers the technical details, affected versions prior to 3.22.0, and mitigation.

Published: February 13, 2026

CVE-2026-24676 Overview

CVE-2026-24676 is a Use After Free vulnerability in FreeRDP, the free implementation of the Remote Desktop Protocol. The vulnerability exists in the AUDIN (Audio Input) channel subsystem where format renegotiation frees the active format list while the capture thread continues using audin->format, leading to a use after free condition in the audio_format_compatible function. This vulnerability can be exploited remotely over the network without authentication, potentially causing denial of service conditions.

Critical Impact

Remote attackers can trigger a use after free condition in FreeRDP's audio input subsystem, potentially causing application crashes or denial of service without requiring any user interaction or authentication.

Affected Products

  • FreeRDP versions prior to 3.22.0
  • All platforms running vulnerable FreeRDP client implementations
  • Systems utilizing FreeRDP's AUDIN channel for audio input redirection

Discovery Timeline

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

Technical Details for CVE-2026-24676

Vulnerability Analysis

This Use After Free vulnerability (CWE-416) occurs in FreeRDP's audio input channel implementation. The flaw manifests when AUDIN format renegotiation occurs - the system frees the active format list through audio_formats_free() while a concurrent capture thread continues to reference audin->format. This creates a classic use after free scenario where the capture thread accesses memory that has already been deallocated.

The vulnerability is exploitable over the network with low attack complexity and requires no privileges or user interaction, making it particularly concerning for exposed RDP clients. The primary impact is on system availability, as successful exploitation leads to memory corruption that can crash the FreeRDP client.

Root Cause

The root cause is a race condition between the format renegotiation logic and the audio capture thread. When the AUDIN channel receives a format renegotiation request, it calls audio_formats_free() to release the current format list. However, the code failed to reset the audin->format pointer to NULL before freeing the formats. This leaves a dangling pointer that the capture thread may continue to dereference, accessing freed memory.

Attack Vector

An attacker can exploit this vulnerability by establishing an RDP connection to a vulnerable FreeRDP client and triggering AUDIN format renegotiation at a precise moment when the audio capture thread is actively using the format data. The attack is network-based and does not require authentication, making it accessible to any attacker who can reach the target system over the network.

c
// Security patch in channels/audin/client/audin_main.c
// Source: https://github.com/FreeRDP/FreeRDP/commit/026b81ae5831ac1598d8f7371e0d0996fac7db00
 
 	Stream_Seek_UINT32(s); /* cbSizeFormatsPacket */
 
+	audin->format = NULL;
 	audio_formats_free(callback->formats, callback->formats_count);
 	callback->formats_count = 0;

Source: GitHub Commit Update

The fix ensures that audin->format is set to NULL before the formats are freed, preventing the capture thread from accessing freed memory.

Detection Methods for CVE-2026-24676

Indicators of Compromise

  • Unexpected FreeRDP client crashes during active RDP sessions with audio input enabled
  • Crash dumps indicating memory access violations in audio_format_compatible or AUDIN-related functions
  • Unusual AUDIN format renegotiation requests in RDP traffic analysis

Detection Strategies

  • Monitor for FreeRDP process crashes and collect crash dumps for analysis of the call stack
  • Implement network monitoring to detect anomalous AUDIN channel activity during RDP sessions
  • Deploy endpoint detection rules to identify memory corruption patterns in FreeRDP processes

Monitoring Recommendations

  • Enable verbose logging for FreeRDP client connections to track AUDIN channel events
  • Implement application crash monitoring specifically for FreeRDP client processes
  • Configure SentinelOne agents to detect and alert on use after free exploitation patterns in RDP-related processes

How to Mitigate CVE-2026-24676

Immediate Actions Required

  • Upgrade FreeRDP to version 3.22.0 or later immediately
  • If immediate upgrade is not possible, disable audio input redirection in FreeRDP client configurations
  • Review and restrict network access to systems running vulnerable FreeRDP versions

Patch Information

The vulnerability is fixed in FreeRDP version 3.22.0. The fix is available in commit 026b81ae5831ac1598d8f7371e0d0996fac7db00. Organizations should upgrade to the patched version as soon as possible. The security advisory with full details is available at the GitHub Security Advisory GHSA-qh5p-frq4-pgxj.

Workarounds

  • Disable AUDIN channel by using the /mic:sys:none or -mic command-line options when launching FreeRDP
  • Block or restrict RDP connections from untrusted networks until patching is complete
  • Consider using alternative RDP clients that are not affected until FreeRDP can be updated
bash
# Configuration example - Disable audio input redirection in FreeRDP
# Launch FreeRDP without microphone/audio input support
xfreerdp /v:server.example.com /u:username -mic

# Alternative: Explicitly disable audio input
xfreerdp /v:server.example.com /u:username /mic:sys:none

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 Update

  • GitHub Security Advisory GHSA-qh5p-frq4-pgxj
  • 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