How to properly setup RDP/VPS

CreedX

Unknown
Messages
233
Reaction score
228
Points
43
Hello all,
I know most people work on RDP, some websites or software quickly notice when you are on RDP, most uses telnet IPADDRESS 3389, to quickly detect, With this method your device will not be detected as RDP and also will not be easily hacked because all hacker knows that rdp default port always runs on 3389 :)

Let get started:

1.png


When you connect to a computer (either a Windows client or Windows Server) through the Remote Desktop client, the Remote Desktop feature on your computer "hears" the connection request through a defined listening port (3389 by default). You can change that listening port on Windows computers by modifying the registry.

  1. Start the registry editor. (Type regedit in the Search box.)
  2. Navigate to the following registry subkey: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp
  3. Find PortNumber
  4. Click Edit > Modify, and then click Decimal.
  5. Type the new port number, and then click OK.
  6. Close the registry editor, and restart your computer.

The next time you connect to this computer by using the Remote Desktop connection, you must type the new port. If you're using a firewall, make sure to configure your firewall to permit connections to the new port number.
You can check the current port by running the following PowerShell command:
Code:
Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "PortNumber"

You can also change the RDP port by running the following PowerShell command. In this command, we'll specify the new RDP port as 3333.

To add a new RDP Port to the registry:
Code:
Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "PortNumber" -Value 3333
New-NetFirewallRule -DisplayName 'RDPPORTLatest' -Profile 'Public' -Direction Inbound -Action Allow -Protocol TCP -LocalPort 3333

This is also a very good video

This is all your device is ready for work!!
 
Top