【常用工具】Proxychains

519 阅读1分钟

0x01 下载安装

Official Site: github.com/rofl0r/prox…

# needs a working C compiler, preferably gcc
./configure --prefix=/usr --sysconfdir=/etc
make
[optional] sudo make install
[optional] sudo make install-config (installs proxychains.conf)

if you dont install, you can use proxychains from the build directorylike this: ./proxychains4 -f src/proxychains.conf telnet google.com 80

在macOS中安装:

brew install proxychains-ng

注: Kali Linux中自带此工具


0x02 配置

0x02.1 配置文件生效顺序

  1. -f proxychains.conf
  2. ./proxychains.conf
  3. $(HOME)/.proxychains/proxychains.conf
  4. $(sysconfdir)/proxychains.conf | like /etc/proxychains.conf or /usr/local/etc/proxychains.conf

0x02.2 三种代理模式

0x02.3 ProxyList配置


0x03 常用命令

# Common usage
proxychains sqlmap -u "xxx.com"
proxychains telnet xxx.com
proxychains -f proxychains-other.conf telnet xxx.com

END ╰( ̄▽ ̄)╭