【笔记】ProxyChains学习笔记 发表于 2024-11-13 更新于 2026-02-04 阅读次数: 前言ProxyChains is a UNIX program, that hooks network-related libc functions in dynamically linked programs via a preloaded DLL and redirects the connections through SOCKS4a/5 or HTTP proxies.(Github) 下载依赖LinuxDebian1apt install proxychains MacOS1brew install proxychains 修改配置文件设置代理模式 按照代理链的顺序依次进行代理,并自动跳过不能通信的代理 /etc/proxychains.conf1dynamic_chain 缺省值,按照代理链的顺序依次进行代理,不会跳过不能通信的代理 /etc/proxychains.conf1strict_chain 按照顺序轮询选择代理链中的一个节点进行代理 /etc/proxychains.conf1round_robin_chain 随机选择代理链中的一个节点进行代理 /etc/proxychains.conf1random_chain 添加代理节点 在[ProxyList]下修改代理链 /etc/proxychains.conf1234socks5 <ip> <port>http <ip> <port>socks5 <ip> <port> <username> <port>http <ip> <port> <username> <port> 通过代理链执行程序 <shell>:Shell命令 1proxychains <shell> 完成参考文献知乎——TimeMachine博客园——0xcreed博客园——EJW