diff options
Diffstat (limited to 'docs/nix')
-rw-r--r-- | docs/nix/proxychains.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/nix/proxychains.txt b/docs/nix/proxychains.txt new file mode 100644 index 0000000..3ed6b60 --- /dev/null +++ b/docs/nix/proxychains.txt @@ -0,0 +1,10 @@ +proxychains is a tool that allows us to issue commands over a proxy + +Configure your proxy setup in /etc/proxychains.conf +e.g. +#/etc/proxychains.conf +socks5 172.15.18.117 1080 + +From there we can actually use the proxy with the proxychains command. +$ proxychains nmap -A -p- 127.0.0.1 +$ proxychains wget http://127.0.0.1:8000 |