1
2
Fork 0
mirror of https://github.com/carlospolop/hacktricks.git synced 2023-12-14 19:12:55 +01:00
This commit is contained in:
CoolHandSquid 2021-08-12 09:26:30 -04:00 committed by GitHub
parent e1cdfc3cdc
commit 2898e66d3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -95,3 +95,22 @@ You can search RDPs that have been backdoored with one of these techniques alrea
net localgroup "Remote Desktop Users" UserLoginName /add
```
## HackTricks Automatic Commands
```
Protocol_Name: RDP #Protocol Abbreviation if there is one.
Port_Number: 3389 #Comma separated if there is more than one.
Protocol_Description: Remote Desktop Protocol #Protocol Abbreviation Spelled out
Name: Notes
Description: Notes for RDP
Note: """
Remote Desktop Protocol (RDP) is a proprietary protocol developed by Microsoft, which provides a user with a graphical interface to connect to another computer over a network connection. The user employs RDP client software for this purpose, while the other computer must run RDP server software
https://book.hacktricks.xyz/pentesting/pentesting-rdp
"""
Name: Nmap
Description: Nmap with RDP Scripts
Command: """nmap --script "rdp-enum-encryption or rdp-vuln-ms12-020 or rdp-ntlm-info" -p 3389 -T4 {IP}"""
```