CVE-2024-43456 Overview
CVE-2024-43456 is a tampering vulnerability in Windows Remote Desktop Services affecting multiple supported Windows Server releases. Microsoft assigned this issue a CVSS 3.1 base score of 7.4 and classified it under [CWE-284] Improper Access Control. The flaw is network-reachable, requires no authentication, and needs no user interaction, but exploitation carries high attack complexity. Successful exploitation impacts confidentiality and integrity of the targeted Remote Desktop Services host. Microsoft published the advisory on October 8, 2024 and updated the entry on October 21, 2024.
Critical Impact
An unauthenticated network attacker who wins a race or meets specific protocol conditions can tamper with Remote Desktop Services data, compromising confidentiality and integrity on the affected Windows Server.
Affected Products
- Microsoft Windows Server 2008 R2 SP1 (x64), Windows Server 2012, and Windows Server 2012 R2
- Microsoft Windows Server 2016 and Windows Server 2019
- Microsoft Windows Server 2022 and Windows Server 2022 23H2
Discovery Timeline
- 2024-10-08 - CVE-2024-43456 published to NVD and Microsoft releases security update
- 2024-10-21 - Last updated in NVD database
Technical Details for CVE-2024-43456
Vulnerability Analysis
The vulnerability resides in Windows Remote Desktop Services (RDS), the component that provides RDP session brokering, gateway services, and remote session hosting on Windows Server. The flaw is categorized as tampering, meaning an attacker can modify data or state managed by RDS without proper authorization. The advisory maps the weakness to improper access control [CWE-284], indicating that an access decision within the service can be bypassed under specific network conditions.
Because the attack vector is network-based and requires neither privileges nor user interaction, exposed RDP-related endpoints reachable from untrusted networks present the highest exposure. The high attack complexity reflects timing, configuration, or protocol-state conditions an attacker must satisfy to trigger the flaw reliably.
Root Cause
The root cause is improper access control within a Remote Desktop Services code path. Microsoft has not released a public technical breakdown of the affected function. Refer to the Microsoft Security Update CVE-2024-43456 advisory for vendor-confirmed details.
Attack Vector
An unauthenticated attacker sends crafted traffic to a Remote Desktop Services endpoint over the network. When the conditions required by the flaw are met, the service processes the request in a way that allows tampering with internal state or session data, undermining confidentiality and integrity guarantees of the service. Availability is not impacted according to the CVSS vector.
No public proof-of-concept exploit is currently available, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog. EPSS data places the probability of exploitation at 0.367 percent.
Detection Methods for CVE-2024-43456
Indicators of Compromise
- Unexpected RDP connection attempts from external or unusual internal source IPs to TCP/3389 or to Remote Desktop Gateway endpoints (TCP/443).
- Anomalous Remote Desktop Services event log entries, particularly under Microsoft-Windows-TerminalServices-* channels, showing malformed or repeated session negotiation attempts.
- Modifications to RDS session state, configuration keys under HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server, or unexplained service restarts of TermService.
Detection Strategies
- Hunt for RDP traffic from networks that have no legitimate business need to reach Remote Desktop Services hosts, including direct internet exposure.
- Correlate Windows Security event IDs 4624 and 4625 with logon type 10 (RemoteInteractive) against baseline patterns to surface anomalous remote session activity.
- Use endpoint detection and response telemetry to flag unsigned or unusual processes interacting with TermService, SessionEnv, or UmRdpService.
Monitoring Recommendations
- Forward Remote Desktop Services operational and admin logs to a centralized SIEM or data lake for retention and correlation across hosts.
- Alert on changes to RDS-related registry keys, group policy objects, and service binaries on all Windows Server systems exposing RDP.
- Track patch state for KB articles referenced in the Microsoft Security Update CVE-2024-43456 advisory across the server estate.
How to Mitigate CVE-2024-43456
Immediate Actions Required
- Apply the October 2024 Microsoft security updates for every affected Windows Server release in your environment.
- Inventory all hosts running Remote Desktop Services, Remote Desktop Gateway, and Remote Desktop Connection Broker roles, and prioritize internet-exposed systems first.
- Restrict TCP/3389 and Remote Desktop Gateway endpoints at the perimeter so only trusted networks or VPN clients can reach RDS.
Patch Information
Microsoft published cumulative security updates addressing CVE-2024-43456 on October 8, 2024 for Windows Server 2008 R2 SP1, Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019, Windows Server 2022, and Windows Server 2022 23H2. Identify the correct KB for each operating system version from the Microsoft Security Update CVE-2024-43456 advisory and deploy through Windows Update, WSUS, or your patch management platform.
Workarounds
- Place Remote Desktop Services behind a VPN or zero-trust network access broker until patching completes.
- Enable Network Level Authentication (NLA) on all RDP-enabled servers to require authentication before session establishment.
- Disable Remote Desktop Services on servers that do not require it using Set-Service -Name TermService -StartupType Disabled after coordinating with operations teams.
# Example: verify RDS patch level and NLA configuration on Windows Server
Get-HotFix | Where-Object { $_.InstalledOn -ge '2024-10-08' }
# Confirm Network Level Authentication is enforced
(Get-WmiObject -Class Win32_TSGeneralSetting -Namespace root\cimv2\terminalservices -Filter "TerminalName='RDP-Tcp'").UserAuthenticationRequired
# Restrict RDP to a trusted management subnet via Windows Firewall
New-NetFirewallRule -DisplayName 'RDP-Restricted' -Direction Inbound -Protocol TCP -LocalPort 3389 -RemoteAddress 10.10.0.0/24 -Action Allow
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.


