Search K
Appearance
Appearance
Other ways to support HackTricks:
From Wikipedia:
Squid is a caching and forwarding HTTP web proxy. It has a wide variety of uses, including speeding up a web server by caching repeated requests, caching web, DNS and other computer network lookups for a group of people sharing network resources, and aiding security by filtering traffic. Although primarily used for HTTP and FTP, Squid includes limited support for several other protocols including Internet Gopher, SSL, TLS and HTTPS. Squid does not support the SOCKS protocol, unlike Privoxy, with which Squid can be used in order to provide SOCKS support.
Default port: 3128
PORT STATE SERVICE VERSION
3128/tcp open http-proxy Squid http proxy 4.11
You can try to set this discovered service as proxy in your browser. However, if it's configured with HTTP authentication you will be prompted for usernames and password.
# Try to proxify curl
curl --proxy http://10.10.11.131:3128 http://10.10.11.131
You can also try to abuse the proxy to scan internal ports proxifying nmap.
Configure proxychains to use the squid proxy adding he following line at the end of the proxichains.conf file: http 10.10.10.10 3128
For proxies requiring authentication, append credentials to the configuration by including the username and password at the end: http 10.10.10.10 3128 username passw0rd
.
Then run nmap with proxychains to scan the host from local: proxychains nmap -sT -n -p- localhost
Alternatively, the Squid Pivoting Open Port Scanner (spose.py) can be used.
python spose.py --proxy http://10.10.11.131:3128 --target 10.10.11.131
Other ways to support HackTricks: