Archive:Darknet Terminal: Difference between revisions
Jump to navigation
Jump to search
(ZeroNet Setup Guide) |
|||
Line 62: | Line 62: | ||
3. Restart privoxy | 3. Restart privoxy | ||
systemctl restart privoxy | systemctl restart privoxy | ||
=== ZeroNet === | |||
1. Install required packages | |||
apt-get install git python-pip virtualenv python-dev | |||
2. Get ZeroNet, and download required Python packages into a virtual environment | |||
git clone https://github.com/HelloZeroNet/ZeroNet.git | |||
cd ZeroNet | |||
virtualenv env | |||
. env/bin/activate | |||
pip install pyzmq gevent msgpack-python | |||
3. Run ZeroNet (within activated virtual env) | |||
python zeronet.py | |||
=== Browser Configuration === | === Browser Configuration === | ||
Line 72: | Line 86: | ||
* Tor | * Tor | ||
** SOCKS Proxy: 127.0.0.1:9050 | ** SOCKS Proxy: 127.0.0.1:9050 | ||
* ZeroNet | |||
** http://127.0.0.1:43110/ | |||
** ZeroBoard: http://127.0.0.1:43110/1Gfey7wVXXg1rxk751TBTxLJwhddDNfcdp | |||
[[Category:Project]] | [[Category:Project]] |
Revision as of 12:07, 13 January 2015
Darknet Terminal Release status: experimental [box doku] | |
---|---|
Description | Find out what happens on the "dark" side of the internet. |
Author(s) | tiefpunkt |
A computer to connect to the "dark" side of the internet. Loaded with TOR, i2p, and whatever else there is.
Networks
Setup
NOTE: This setup guide is not complete Setup a Linux box based on Debian Testing, with I2P and Tor. "Normal" internet pages are not routed through any of those, only specific pages such as .i2p and .onion.
Setup Linux box
1. Install Debian Testing 2. Some additional stuff
apt-get purge fonts-opensymbol libreoffice libreoffice-\* openoffice.org-dtd-officedocument1.0 python\*-uno uno-libs3-\* ure ure-dbg apt-get vim apt-get clean apt-get autoremove
I2P
1. Add Repository
vi /etc/apt/sources.list.d/i2p.list
deb http://deb.i2p2.no/ unstable main deb-src http://deb.i2p2.no/ unstable main
2. Install I2P
wget https://geti2p.net/_static/debian-repo.pub apt-key add debian-repo.pub apt-get update apt-get install i2p i2p-keyring
3. Start I2P on boot
dpkg-reconfigure i2p
TOR
apt-get install tor
Privoxy
1. Install privoxy
apt-get install privoxy
2. Configure privoxy
vi /etc/privoxy/config
forward / . forward .i2p 127.0.0.1:4444 forward-socks5t .onion 127.0.0.1:9050 .
3. Restart privoxy
systemctl restart privoxy
ZeroNet
1. Install required packages
apt-get install git python-pip virtualenv python-dev
2. Get ZeroNet, and download required Python packages into a virtual environment
git clone https://github.com/HelloZeroNet/ZeroNet.git cd ZeroNet virtualenv env . env/bin/activate pip install pyzmq gevent msgpack-python
3. Run ZeroNet (within activated virtual env)
python zeronet.py
Browser Configuration
Config HTTP Proxy to 127.0.0.1:8118
Infos
- I2P
- Router Console: http://127.0.0.1:7657/home
- HTTP Proxy: 127.0.0.1:4444
- Tor
- SOCKS Proxy: 127.0.0.1:9050
- ZeroNet