Linux command
proxychains 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Run a command
proxychains [command]
Run curl through proxy
proxychains curl [url]
Use a specific config
proxychains -f [path/to/config.conf] [command]
Quiet mode
proxychains -q [command]
SSH through proxy
proxychains ssh [user]@[host]
Chain proxychains with a browser
proxychains firefox
说明
proxychains forces TCP connections made by a given application to go through proxy servers such as SOCKS4, SOCKS5, or HTTP proxies. It hooks network-related libc functions using LD_PRELOAD to redirect traffic transparently without modifying the target application. Useful for anonymization, routing traffic through Tor, and bypassing network restrictions. Supported authentication types are user/pass for SOCKS4/5 and basic for HTTP. The modern maintained version is proxychains-ng (proxychains4) by rofl0r, which is a continuation of the original project.
参数
- -q
- Quiet mode. Do not display proxy connection information.
- -f _config_file_
- Use specified configuration file instead of the default. Without this flag, proxychains searches in order: the path in the PROXYCHAINS_CONF_FILE environment variable, ./proxychains.conf, ~/.proxychains/proxychains.conf, and /etc/proxychains.conf.
FAQ
What is the proxychains command used for?
proxychains forces TCP connections made by a given application to go through proxy servers such as SOCKS4, SOCKS5, or HTTP proxies. It hooks network-related libc functions using LD_PRELOAD to redirect traffic transparently without modifying the target application. Useful for anonymization, routing traffic through Tor, and bypassing network restrictions. Supported authentication types are user/pass for SOCKS4/5 and basic for HTTP. The modern maintained version is proxychains-ng (proxychains4) by rofl0r, which is a continuation of the original project.
How do I run a basic proxychains example?
Run `proxychains [command]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -q do in proxychains?
Quiet mode. Do not display proxy connection information.