Proxychains

Proxychains使用心得

0x01 下载安装

Kali Linux中自带这个工具

官方地址:https://github.com/rofl0r/proxychains-ng
# 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 directory

like this: ./proxychains4 -f src/proxychains.conf telnet google.com 80

0x02 配置

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

  1. -f proxychains.conf
  2. ./proxychains.conf
  3. $(HOME)/.proxychains/proxychains.conf
  4. $(sysconfdir)/proxychains.conf | like /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

0x04 代理获取

0x05 Python自动化添加代理

未完待续


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!