Microsoft Fixes RDP Bug, But Should You Even Be Using Remote Desktop?

Listen to this Post

Microsoft has addressed a critical bug affecting Remote Desktop Protocol (RDP) connections in recent Windows updates, but cybersecurity experts argue that RDP should be disabled entirely due to its inherent security risks. The vulnerability caused RDP sessions to disconnect after 65 seconds when connecting from Windows 11 24H2 to Windows Server 2016 or earlier systems. While Microsoft has released a fix (BleepingComputer article), the broader discussion highlights RDP’s role as a prime attack vector for malware actors.

You Should Know:

If you must use RDP, follow these hardening measures:

1. Disable RDP Where Possible


<h1>Disable RDP via PowerShell (Admin rights required)</h1>

Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -Name "fDenyTSConnections" -Value 1

<h1>Linux alternative (if managing Windows from Linux)</h1>

net rpc service stop termservice -U user%pass -S windows_host

#### **2. Enforce Multi-Factor Authentication (MFA)**