-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- SSH代理添加描述 - 更新目录
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,10 @@ | |
- [使用 SSH 创建动态端口转发作 socks 代理](#使用-ssh-创建动态端口转发作-socks-代理) | ||
- [BurpSuit 挂内网主机的 socks 代理拦截本地 http 流量访问内网其他的服务](#burpsuit-挂内网主机的-socks-代理拦截本地-http-流量访问内网其他的服务) | ||
- [使用 netsh 设置端口转发](#使用-netsh-设置端口转发) | ||
- [Proxychains](#proxychains) | ||
- [安装](#安装) | ||
- [使用](#使用) | ||
- [命令行设置HTTP代理](#命令行设置http代理) | ||
|
||
--- | ||
|
||
|
@@ -146,7 +150,7 @@ ssh -fND localhost:12345 -i [私钥路径] [email protected] | |
|
||
- `-f` 表示在后台运行 ssh 命令, 不占用终端 | ||
- `-N` 表示不执行远程命令,只做端口转发 | ||
- `-D localhost:12345` 表示创建一个动态端口转发, 将本地主机的 12345 端口作为 socks 代理 | ||
- `-D localhost:12345` 表示创建一个动态端口转发, 将本地主机 `localhost` 的 12345 端口作为 socks 代理 | ||
- `-i [私钥路径]` 表示使用指定私钥文件进行身份验证 | ||
- `[email protected]` 表示以 root 用户登录远程主机 192.168.1.96 | ||
|
||
|