2024-02-09 12:48:25 +00:00
# 1080 - 渗透测试 Socks
2022-04-28 16:01:33 +00:00
< details >
2024-02-09 12:48:25 +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-02-09 12:48:25 +00:00
支持 HackTricks 的其他方式:
2022-04-28 16:01:33 +00:00
2024-02-09 12:48:25 +00:00
* 如果您想看到您的**公司在 HackTricks 中做广告**或**下载 PDF 版的 HackTricks**,请查看[**订阅计划**](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 ) 或 [**电报群组** ](https://t.me/peass ) 或在 **Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks_live )** 上关注我们**。
* 通过向 [**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 >
2023-08-03 19:12:22 +00:00
## 基本信息
2022-04-28 16:01:33 +00:00
2024-02-09 12:48:25 +00:00
**SOCKS** 是一种用于在客户端和服务器之间通过代理传输数据的协议。第五版 **SOCKS5** 添加了一个可选的身份验证功能,只允许经过授权的用户访问服务器。它主要处理 TCP 连接的代理和 UDP 数据包的转发,工作在 OSI 模型的会话层(第 5 层)。
2021-05-14 00:08:24 +00:00
2023-08-03 19:12:22 +00:00
**默认端口:** 1080
2021-05-14 00:08:24 +00:00
2023-08-03 19:12:22 +00:00
## 枚举
2021-05-14 00:08:24 +00:00
2023-08-03 19:12:22 +00:00
### 身份验证检查
2021-05-14 00:08:24 +00:00
```bash
nmap -p 1080 < ip > --script socks-auth-info
```
2023-08-03 19:12:22 +00:00
### 暴力破解
2021-05-14 00:08:24 +00:00
2023-08-03 19:12:22 +00:00
#### 基本用法
2021-05-14 00:08:24 +00:00
```bash
nmap --script socks-brute -p 1080 < ip >
```
2023-08-03 19:12:22 +00:00
#### 高级用法
2021-05-14 00:08:24 +00:00
```bash
nmap --script socks-brute --script-args userdb=users.txt,passdb=rockyou.txt,unpwdb.timelimit=30m -p 1080 < ip >
```
2023-08-03 19:12:22 +00:00
#### 输出
2024-02-09 12:48:25 +00:00
#### Socks Proxy
Socks Proxy是一种网络协议, 允许网络流量通过代理服务器转发。 Socks代理通常用于绕过防火墙限制或隐藏用户的真实IP地址。在渗透测试中, 可以使用Socks代理来匿名访问目标网络或绕过安全控制。
2022-05-01 13:25:53 +00:00
```
2021-05-14 00:14:06 +00:00
PORT STATE SERVICE
1080/tcp open socks
| socks-brute:
| Accounts
| patrik:12345 - Valid credentials
| Statistics
|_ Performed 1921 guesses in 6 seconds, average tps: 320
```
2023-08-03 19:12:22 +00:00
## 隧道和端口转发
2021-05-14 00:14:06 +00:00
2024-02-09 12:48:25 +00:00
### 基本proxychains用法
2021-05-25 22:52:07 +00:00
2023-08-03 19:12:22 +00:00
设置proxychains以使用socks代理
2022-05-01 13:25:53 +00:00
```
2021-05-14 00:08:24 +00:00
nano /etc/proxychains4.conf
```
2024-02-09 12:48:25 +00:00
```html
< p > Now that you have successfully set up your SOCKS proxy, you can use it to route your traffic through a remote server securely. This can help you bypass network restrictions and enhance your privacy and anonymity online.< / p >
2021-05-25 22:52:07 +00:00
2024-02-09 12:48:25 +00:00
< p > Remember to always use proxies responsibly and avoid engaging in any illegal activities.< / p >
2023-08-03 19:12:22 +00:00
2024-02-09 12:48:25 +00:00
< p > Happy hacking!< / p >
```
2022-05-01 13:25:53 +00:00
```
2021-05-14 00:08:24 +00:00
socks5 10.10.10.10 1080
```
2024-02-09 12:48:25 +00:00
使用认证
2022-05-01 13:25:53 +00:00
```
2021-05-14 00:08:24 +00:00
socks5 10.10.10.10 1080 username password
```
2024-02-09 12:48:25 +00:00
#### 更多信息: [隧道和端口转发](../generic-methodologies-and-resources/tunneling-and-port-forwarding.md)
2022-04-28 16:01:33 +00:00
< details >
2024-02-09 12:48:25 +00:00
< summary > < strong > 从零开始学习AWS黑客技术< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > !< / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-02-09 12:48:25 +00:00
支持HackTricks的其他方式:
2022-04-28 16:01:33 +00:00
2024-02-09 12:48:25 +00:00
* 如果您想看到您的**公司在HackTricks中被广告**或**下载PDF格式的HackTricks**,请查看[**订阅计划**](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 ) 或 [**电报群组** ](https://t.me/peass ) 或 **关注**我们的**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks_live )**.**
* 通过向[**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 >