Difference between revisions of "Creating Tor Hidden Services"
(Created page with "Most GNU/Linux distributions come with the TOR package. In this tutorial I will be using a Raspberry Pi with Raspbian Jessie Lite from July 2017.") |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | Most GNU/Linux distributions come with the TOR package. In this tutorial I will be using a Raspberry Pi with Raspbian | + | Most GNU/Linux distributions come with the TOR package. In this tutorial I will be using a Raspberry Pi with Raspbian Stretch Lite from June 2018. |
| + | |||
| + | <pre> | ||
| + | $ sudo apt install tor | ||
| + | </pre> | ||
| + | |||
| + | /etc/tor/torrc | ||
| + | |||
| + | <pre> | ||
| + | HiddenServiceDir /var/lib/tor/sshd/ | ||
| + | HiddenServicePort 22 127.0.0.1:22 | ||
| + | HiddenServiceDir /var/lib/tor/web/ | ||
| + | HiddenServicePort 80 127.0.0.1:80 | ||
| + | </pre> | ||
| + | |||
| + | |||
| + | <pre> | ||
| + | HiddenServiceDir /var/lib/tor/keys/ | ||
| + | HiddenServicePort 22 127.0.0.1:22 | ||
| + | HiddenServicePort 80 127.0.0.1:80 | ||
| + | </pre> | ||
| + | |||
| + | |||
| + | <pre> | ||
| + | $ sudo apt install build-essential libssl-dev | ||
| + | $ git clone https://github.com/ReclaimYourPrivacy/eschalot.git | ||
| + | $ cd eschalot | ||
| + | make | ||
| + | </pre> | ||
| + | |||
| + | The parameters are: | ||
| + | -p for the search prefix | ||
| + | -t for number of threads | ||
| + | -v for verbose output | ||
| + | |||
| + | <pre> | ||
| + | ./eschalot -vp test -t 4 > test.txt | ||
| + | </pre> | ||
Latest revision as of 16:41, 16 September 2018
Most GNU/Linux distributions come with the TOR package. In this tutorial I will be using a Raspberry Pi with Raspbian Stretch Lite from June 2018.
$ sudo apt install tor
/etc/tor/torrc
HiddenServiceDir /var/lib/tor/sshd/ HiddenServicePort 22 127.0.0.1:22 HiddenServiceDir /var/lib/tor/web/ HiddenServicePort 80 127.0.0.1:80
HiddenServiceDir /var/lib/tor/keys/ HiddenServicePort 22 127.0.0.1:22 HiddenServicePort 80 127.0.0.1:80
$ sudo apt install build-essential libssl-dev $ git clone https://github.com/ReclaimYourPrivacy/eschalot.git $ cd eschalot make
The parameters are: -p for the search prefix -t for number of threads -v for verbose output
./eschalot -vp test -t 4 > test.txt