Proxychains - Für Programme die keinen proxy unterstützen
Beschreibung:
Ein Programm das als Tunnel gillt, wenn das Programm selbst keinen proxy unterstützt.
proxychain bekommts als parameter die binary von dem eigentlichen programm.
Installation
apt install proxychains
Nun die konfigurations anpassen
nano /etc/proxychains.conf
Dort den proxy hinzufügen
#die abarbeitung:
#proxychains wie der name schon sgat kann eine kette von proxys benutzen.
#hier die modie
#dns anfragebn auch über den proxy
proxy_dns
[ProxyList]
#beispiel proxy
#typ ip vom proxy port
socks5 192.168.1.1 1080
http 192.168.1.2 8080
Aufruf
/usr/bin/proxychains <programmanme>
/usr/bin/proxychains firefox
#dynamic_chain
#
# Dynamic - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# at least one proxy must be online to play in chain
# (dead proxies are skipped)
# otherwise EINTR is returned to the app
#
strict_chain
#
# Strict - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# all proxies must be online to play in chain
# otherwise EINTR is returned to the app
#
#random_chain
#
# Random - Each connection will be done via random proxy
# (or proxy chain, see chain_len) from the list.
# this option is good to test your IDS :)