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

CVE-2026-33977: FreeRDP Client DoS Vulnerability

CVE-2026-33977 is a denial of service flaw in FreeRDP that allows malicious RDP servers to crash clients via invalid audio data. This post covers the technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-33977 Overview

CVE-2026-33977 is a Denial of Service vulnerability in FreeRDP, a free implementation of the Remote Desktop Protocol. A malicious RDP server can crash FreeRDP clients by sending specially crafted audio data in IMA ADPCM format containing an invalid initial step index value (>= 89). The unvalidated step index is read directly from the network and used to index into an 89-entry lookup table, triggering a WINPR_ASSERT() failure and process abort via SIGABRT.

Critical Impact

This vulnerability affects any FreeRDP client with audio redirection (RDPSND) enabled, which is the default configuration, allowing malicious RDP servers to reliably crash client connections.

Affected Products

  • FreeRDP versions prior to 3.24.2
  • FreeRDP clients with audio redirection (RDPSND) enabled
  • Default FreeRDP client configurations

Discovery Timeline

  • 2026-03-30 - CVE-2026-33977 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33977

Vulnerability Analysis

This vulnerability stems from improper input validation in FreeRDP's audio codec handling, specifically within the IMA ADPCM decoder. When processing audio data received from an RDP server, the FreeRDP client reads a step index value directly from the network data without verifying it falls within the valid range for the ima_step_size_table lookup table.

The IMA ADPCM algorithm uses a step size table containing 89 entries (indices 0-88) to decode compressed audio samples. When an attacker provides a step index value of 89 or greater, the code attempts to access memory outside the bounds of this table. Rather than causing a traditional buffer overflow, the FreeRDP implementation includes an assertion check (WINPR_ASSERT()) that detects this out-of-bounds condition and terminates the process with SIGABRT.

The attack can be executed remotely over the network without any authentication beyond establishing an RDP connection. User interaction is required as the victim must connect to the malicious RDP server. The impact is limited to availability—there is no confidentiality or integrity impact.

Root Cause

The root cause is a missing boundary validation check on the last_step index value received from network input before using it to index into the ima_step_size_table array. The step index is read from incoming audio packets and stored in adpcm->ima.last_step[channel] without verification that the value is within the valid range of 0-88.

Attack Vector

An attacker operating a malicious RDP server can exploit this vulnerability by:

  1. Waiting for a FreeRDP client to connect with audio redirection enabled (default configuration)
  2. Initiating an RDPSND audio stream with IMA ADPCM format
  3. Sending a crafted audio packet containing a step index value >= 89
  4. The client processes this packet, triggering the out-of-bounds table access
  5. The WINPR_ASSERT() check fires, terminating the client process via SIGABRT

The following patch was applied in version 3.24.2 to address this vulnerability:

c
 	12635, 13899, 15289, 16818, 18500, 20350, 22385, 24623, 27086, 29794, 32767
 };
 
+static inline void dsp_ima_clamp_step(ADPCM* WINPR_RESTRICT adpcm, unsigned int channel)
+{
+	WINPR_ASSERT(adpcm);
+	if (adpcm->ima.last_step[channel] < 0)
+		adpcm->ima.last_step[channel] = 0;
+
+	const size_t size = ARRAYSIZE(ima_step_size_table);
+	if (adpcm->ima.last_step[channel] > size)
+		adpcm->ima.last_step[channel] = size;
+}
+
 static UINT16 dsp_decode_ima_adpcm_sample(ADPCM* WINPR_RESTRICT adpcm, unsigned int channel,
                                           BYTE sample)
 {

Source: GitHub Commit Details

Detection Methods for CVE-2026-33977

Indicators of Compromise

  • Unexpected FreeRDP client crashes with SIGABRT signals during RDP sessions
  • Core dumps or crash reports showing assertion failures in the libfreerdp/codec/dsp.c module
  • Process termination logs indicating failures in IMA ADPCM audio decoding routines

Detection Strategies

  • Monitor for FreeRDP client processes terminating abnormally with SIGABRT exit signals
  • Implement network monitoring for RDP connections to untrusted or suspicious servers
  • Deploy endpoint detection rules to identify crashes in FreeRDP with stack traces referencing dsp_decode_ima_adpcm_sample or related functions

Monitoring Recommendations

  • Configure crash reporting to capture FreeRDP assertion failures and forward to security teams
  • Log all outbound RDP connections and review connections to non-whitelisted servers
  • Implement application-level monitoring to detect repeated FreeRDP client terminations

How to Mitigate CVE-2026-33977

Immediate Actions Required

  • Upgrade FreeRDP to version 3.24.2 or later immediately
  • Disable audio redirection (RDPSND) if not required by adding /sound:off to the connection parameters
  • Restrict RDP connections to trusted, known servers only
  • Review and harden RDP connection policies to prevent connections to untrusted endpoints

Patch Information

FreeRDP has released version 3.24.2 which includes a fix for this vulnerability. The patch introduces the dsp_ima_clamp_step() function that validates the step index value is within the valid range (0 to 88) before using it to index the lookup table. For additional details, refer to the GitHub Security Advisory GHSA-8f2g-3q27-6xm5.

Workarounds

  • Disable audio redirection by launching FreeRDP with the /sound:off parameter
  • Only connect to trusted RDP servers with verified identities
  • Implement network-level controls to block outbound RDP connections to unauthorized destinations
bash
# Disable audio redirection when connecting with FreeRDP
xfreerdp /v:server.example.com /u:username /sound:off

# Alternative: Disable audio in configuration file
echo "sound:off" >> ~/.config/freerdp/default.freerdp

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechFreerdp

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/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-617
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-8f2g-3q27-6xm5
  • Related CVEs
  • CVE-2026-33952: FreeRDP Gateway DOS Vulnerability

  • CVE-2026-33983: FreeRDP Remote Desktop Protocol DoS Flaw

  • CVE-2026-31884: FreeRDP ADPCM Decoder DoS Vulnerability

  • CVE-2026-27015: FreeRDP Denial of Service Vulnerability
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