proxychains
Route any TCP tool through proxy chains (Tor, SOCKS4/5, HTTP) to pivot or anonymize traffic. Wrap commands like nmap or curl with proxy configuration.
Instructions
Proxy wrapper — forces any TCP-based tool's connections through a chain of proxies (Tor, SOCKS4/5, HTTP proxies). Reads proxy configuration from /etc/proxychains4.conf. Use to route tools through a pivot host (after setting up chisel or SSH tunneling) or through Tor for anonymity. Wrap any command: proxychains nmap -sT target.com Output: the wrapped tool's normal output, plus proxy chain connection debug info.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| opts | No | Additional proxychains options (e.g. '-f custom_proxychains.conf' for non-default config) | |
| command | Yes | Full command to run through proxychains (e.g. 'nmap -sT target.com' or 'curl http://internal.corp.local') |