Skip to content

Commit

Permalink
代理转发
Browse files Browse the repository at this point in the history
- SSH代理添加描述
- 更新目录
  • Loading branch information
Ayusummer committed May 10, 2024
1 parent ac8b1d5 commit baea824
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/网络安全/内网渗透/代理转发/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
- [使用 SSH 创建动态端口转发作 socks 代理](#使用-ssh-创建动态端口转发作-socks-代理)
- [BurpSuit 挂内网主机的 socks 代理拦截本地 http 流量访问内网其他的服务](#burpsuit-挂内网主机的-socks-代理拦截本地-http-流量访问内网其他的服务)
- [使用 netsh 设置端口转发](#使用-netsh-设置端口转发)
- [Proxychains](#proxychains)
- [安装](#安装)
- [使用](#使用)
- [命令行设置HTTP代理](#命令行设置http代理)

---

Expand Down Expand Up @@ -146,7 +150,7 @@ ssh -fND localhost:12345 -i [私钥路径] root@192.168.1.96

- `-f` 表示在后台运行 ssh 命令, 不占用终端
- `-N` 表示不执行远程命令,只做端口转发
- `-D localhost:12345` 表示创建一个动态端口转发, 将本地主机的 12345 端口作为 socks 代理
- `-D localhost:12345` 表示创建一个动态端口转发, 将本地主机 `localhost` 12345 端口作为 socks 代理
- `-i [私钥路径]` 表示使用指定私钥文件进行身份验证
- `root@192.168.1.96` 表示以 root 用户登录远程主机 192.168.1.96

Expand Down

0 comments on commit baea824

Please sign in to comment.