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

Listen to this Post

Microsoft has addressed a known issue causing Remote Desktop Protocol (RDP) disconnections after 65 seconds when connecting from Windows 11 24H2 to Windows Server 2016 or earlier. While the patch resolves the bug, security experts argue that RDP should be disabled entirely due to its high exploitation risk by malware actors.

Read more about the fix here: BleepingComputer

You Should Know:

1. Disabling RDP on Windows

To mitigate risks, disable RDP unless absolutely necessary:


<h1>Check if RDP is enabled</h1>

Get-ItemProperty -Path "HKLM:\System\CurrentControlSet\Control\Terminal Server" -Name "fDenyTSConnections"

<h1>Disable RDP</h1>

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

<h1>Enable firewall block for RDP (Port 3389)</h1>

netsh advfirewall firewall add rule name="Block RDP" dir=in action=block protocol=TCP localport=3389 

#### **2. Secure Alternatives to RDP**