0% found this document useful (0 votes)
20 views1 page

Proxychains

The document provides examples of using proxychains with various commands to route network traffic through a proxy server. It includes commands for sending HTTP requests, connecting to remote servers via SSH, downloading files, and sending ICMP packets through SOCKS5 and HTTP proxies. Each example specifies the required syntax and parameters for successful execution.

Uploaded by

venomaz2129
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views1 page

Proxychains

The document provides examples of using proxychains with various commands to route network traffic through a proxy server. It includes commands for sending HTTP requests, connecting to remote servers via SSH, downloading files, and sending ICMP packets through SOCKS5 and HTTP proxies. Each example specifies the required syntax and parameters for successful execution.

Uploaded by

venomaz2129
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

1) proxychains curl -x socks5://user:pass@proxy-server:port http://example.

com
This command uses proxychains to send an HTTP request through a SOCKS5 proxy. The
curl command is used to send the request, and -x socks5://user:pass@proxy-
server:port specifies the SOCKS5 proxy to use. The http://example.com URL is the
address you want to send the request to.

2) proxychains ssh -o "ProxyCommand=proxychains nc -X 5 -x proxy-server:port %h %p"


user@remote-server
This command uses proxychains to connect to a remote server through a SOCKS5 proxy.
The ssh command is used to establish the connection, and -o
"ProxyCommand=proxychains nc -X 5 -x proxy-server:port %h %p" specifies the proxy
to use. The user@remote-server argument specifies the user and server to connect
to.

3) proxychains wget -e "http_proxy=http://user:pass@proxy-server:port"


http://example.com/file.txt
This command uses proxychains to download a file through a HTTP proxy. The wget
command is used to download the file, and -e "http_proxy=http://user:pass@proxy-
server:port" specifies the HTTP proxy to use. The http://example.com/file.txt URL
is the address of the file you want to download.

4) proxychains ping -D -P 4 -w 2 -c 4 proxy-server


This command uses proxychains to send ICMP packets through a SOCKS4 proxy. The ping
command is used to send the packets, and -D -P 4 -w 2 -c 4 specify various options
for the ping command. The proxy-server argument specifies the proxy server to use.

You might also like