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

CVE-2026-33984: FreeRDP Buffer Overflow Vulnerability

CVE-2026-33984 is a heap buffer overflow vulnerability in FreeRDP that allows attackers to write data into undersized buffers. This post covers the technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-33984 Overview

CVE-2026-33984 is a heap buffer overflow vulnerability in FreeRDP, a free implementation of the Remote Desktop Protocol. The vulnerability exists in the resize_vbar_entry() function within libfreerdp/codec/clear.c. Prior to version 3.24.2, the code incorrectly updates vBarEntry->size to vBarEntry->count before the winpr_aligned_recalloc() call. If the reallocation fails, the size variable is inflated while the pixels pointer still references the old, smaller buffer. On subsequent calls where count is less than or equal to the inflated size value, reallocation is skipped, and the caller writes attacker-controlled pixel data into the undersized buffer, resulting in a heap buffer overflow.

Critical Impact

A remote attacker can exploit this heap buffer overflow vulnerability to potentially execute arbitrary code or cause a denial of service on systems running vulnerable versions of FreeRDP.

Affected Products

  • FreeRDP versions prior to 3.24.2
  • Systems using FreeRDP as an RDP client
  • Applications integrating libfreerdp codec libraries

Discovery Timeline

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

Technical Details for CVE-2026-33984

Vulnerability Analysis

This vulnerability is classified as CWE-122 (Heap-based Buffer Overflow). The flaw stems from improper memory management in the CLEAR codec implementation used for RDP bitmap decompression.

The vulnerable code path involves the resize_vbar_entry() function which handles dynamic resizing of vertical bar entries used in bitmap processing. The fundamental issue is a premature size variable update that creates a state inconsistency when memory allocation fails. The attack requires network access and user interaction (connecting to a malicious RDP server), but no prior authentication is required.

Root Cause

The root cause is a logic error in memory management within resize_vbar_entry(). The code updates vBarEntry->size to vBarEntry->count before calling winpr_aligned_recalloc(). When the reallocation fails, the function does not roll back the size update, leaving the structure in an inconsistent state where size indicates more allocated memory than actually exists. This creates a classic heap overflow condition exploitable on subsequent operations.

Attack Vector

The attack vector is network-based, requiring a victim to connect to a malicious RDP server. The attacker-controlled server can send specially crafted CLEAR codec data that:

  1. Triggers an initial resize operation that will fail due to resource constraints
  2. Sends a subsequent request with a count value within the inflated (but incorrect) size limit
  3. Delivers attacker-controlled pixel data that overwrites heap memory beyond the actual buffer allocation

The following patch demonstrates the fix applied in version 3.24.2:

c
 		const UINT32 oldPos = vBarEntry->size * bpp;
 		const UINT32 diffSize = (vBarEntry->count - vBarEntry->size) * bpp;
 
-		vBarEntry->size = vBarEntry->count;
 		BYTE* tmp =
 		    (BYTE*)winpr_aligned_recalloc(vBarEntry->pixels, vBarEntry->count, 1ull * bpp, 32);

Source: GitHub Commit Update

The patch moves the size update to occur only after successful memory allocation, preventing the inconsistent state that enables exploitation.

Detection Methods for CVE-2026-33984

Indicators of Compromise

  • Unexpected crashes or segmentation faults in FreeRDP client processes
  • Abnormal memory allocation patterns in processes using libfreerdp
  • RDP connections to unfamiliar or suspicious server addresses
  • Process memory anomalies indicating heap corruption

Detection Strategies

  • Monitor FreeRDP client processes for crash events and abnormal termination
  • Implement network monitoring for RDP connections (port 3389) to untrusted destinations
  • Deploy endpoint detection rules for heap corruption indicators in RDP-related processes
  • Enable application crash reporting and analyze dumps for exploitation patterns

Monitoring Recommendations

  • Track FreeRDP version deployments across the environment and flag versions prior to 3.24.2
  • Monitor for unusual RDP connection patterns, particularly to external or unknown servers
  • Implement logging of RDP session establishment events for forensic analysis
  • Configure memory protection features (ASLR, DEP) and monitor for bypass attempts

How to Mitigate CVE-2026-33984

Immediate Actions Required

  • Update FreeRDP to version 3.24.2 or later immediately
  • Audit systems for FreeRDP installations and applications using libfreerdp
  • Restrict RDP client connections to trusted servers only via network policies
  • Enable memory protection features on systems running FreeRDP clients

Patch Information

FreeRDP has released version 3.24.2 which addresses this vulnerability. The fix ensures that vBarEntry->size is only updated after successful memory allocation in the resize_vbar_entry() function. The patch is available via the GitHub Commit Update. Additional details are available in the GitHub Security Advisory GHSA-8469-2xcx-frf6.

Workarounds

  • Restrict FreeRDP client usage to trusted, internal RDP servers only
  • Implement network segmentation to limit exposure of RDP client systems
  • Use VPN or other secure tunneling when connecting to remote RDP servers
  • Disable RDP client functionality on systems where it is not required
bash
# Example: Restrict FreeRDP connections to trusted servers via firewall
# Block outbound RDP to untrusted networks
iptables -A OUTPUT -p tcp --dport 3389 -d 10.0.0.0/8 -j ACCEPT
iptables -A OUTPUT -p tcp --dport 3389 -d 192.168.0.0/16 -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
  • TypeBuffer Overflow

  • Vendor/TechFreerdp

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-122
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-8469-2xcx-frf6
  • Related CVEs
  • CVE-2026-33982: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-33986: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-33987: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-29774: FreeRDP Buffer Overflow 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