diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2021-08-28 06:29:07 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2021-09-05 23:52:15 -0400 |
commit | 7df705e8f924475cd24d09ce47f08f1d9cfbb71c (patch) | |
tree | a07e43bbd3ea0c4c18bf2d58eb2af8a2cd268281 /docs | |
parent | f5851f63f1ea27c9deb35475c4d00398026bbe63 (diff) | |
download | lib-des-gnux-7df705e8f924475cd24d09ce47f08f1d9cfbb71c.tar.gz lib-des-gnux-7df705e8f924475cd24d09ce47f08f1d9cfbb71c.zip |
Add Short Doc About proxychains
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to 'docs')
-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 |