tor-hidden-service-python
A simple boilerplate of creating a
.onionwebsite for Tor using Flask and Python.
- 
Download Tor browser from the official site (link)
 - 
Configure your hidden service.
- Go to the Tor browser directory.
 - Open the "torrc" file in an editor. (Probably located in 
Browser/TorBrowser/Data/Tordirectory) - Add the following lines to the file
 
HiddenServiceDir /any/path/where/you/want/config/to/be/stored HiddenServicePort 80 127.0.0.1:5000- Save and close the file.
 
 - 
Clone this repository in your local system
 
$ git clone https://github.com/satwikkansal/tor-hidden-service-python.git
$ cd tor-hidden-service- Install the pypi requirements
 
$ pip -r requirements.txt- Run the server
 
$ python run.py- 
Launch the Tor Browser
 - 
Copy the url generated in the
hostnamefile 
$ cat /path/to/config/directory/hostname
>>> some-obfuscated-url.onion- Open this copied url in the Tor Browser and it should work 🎉
 
All patches welcome!
MIT License - see the LICENSE file for details.
