Enterprise-Onion-Toolkit/README.md

9.9 KiB

The Enterprise Onion Toolkit

eotk (c) 2017 Alec Muffett

Status - ALPHA, updated 8 February 2017 @ 1830 UTC

NEW: Troubleshooting section at the bottom of this page

The EOTK goal is to provide a tool for prototyping, and deploying at scale, HTTP and HTTPS onion sites to provide official presence for popular websites.

The results are essentially a "man in the middle" proxy; set them up only for your own sites or for sites which do not require login credentials of any kind.

The resulting NGINX configs are probably both buggy and not terribly well tuned; please consider this project to be very much "early days", but I shall try not to modify the configuration file format.

The softmap support is untested, and needs some more work to make it nice to launch and integrate with OnionBalance; please avoid it for the moment.

An Important Note About Anonymity

The presumed use-case of EOTK is that you have an already-public website and that you wish to give it a corresponding Onion address; a lot of people mistakenly believe that Tor Onion Networking is "all about anonymity" - which is incorrect, since it also includes:

  • privacy
  • identity/surety of to whom you are connected
  • freedom from oversight/network surveillance
  • anti-blocking, and...
  • enhanced integrity

...none of which are the same as "anonymity"; also, if you are setting EOTK up in its intended mode, your resulting site is almost certainly not going to be anonymous.

If instead you want to set up a server which includes anonymity as well as all of the aforementioned qualities, you want to be reading an entirely different document, instead.

Usage Notes

When connecting to the resulting onions over HTTP/SSL, you will be using wildcard self-signed SSL certificates - you will encounter many "broken links" which are due to the SSL certificate not being valid. This is expected and proper behaviour.

To help cope with this, for any domain (eg: www.foofoofoofoofoof.onion) the EOTK provides a fixed url:

  • https://www.foofoofoofoofoof.onion/hello-onion/

...which (/hello-onion/) is internally served by the NGINX proxy and provides a stable, fixed URL for SSL certificate acceptance; inside TorBrowser another effective solution is to open all the broken links, images and resources "in a new Tab" and accept the certificate there.

In production, of course, one would expect to use an SSL EV certificate to provide identity and assurance to an onion site, rendering these issues moot.

Requirements

  • tor (latest stable)
  • nginx (latest stable) with the following features & modules
    • headers_more
    • ngx_http_substitutions_filter_module
    • http_sub
    • http_ssl

On Linux, scripts are provided to compile these.

On OSX, these are available via Homebrew.

Video Demonstrations

Command List

Intuitively obvious to the most casual observer:

  • eotk config [filename] # default onions.conf
    • synonyms: conf, configure
    • parses the config file and sets up and populates the projects
  • eotk status projectname ... # or: -a for all
    • process status
  • eotk maps projectname ... # or: -a for all
    • print which onions correspond to which dns domains
  • eotk start projectname ... # or: -a for all
    • start projects
  • eotk stop projectname ... # or: -a for all
    • stop projects
  • eotk bounce projectname ... # or: -a for all
    • synonyms: restart, reload
    • stop, and restart, projects
  • eotk debugon projectname ... # or: -a for all
    • enable verbose tor logs
  • eotk debugoff projectname ... # or: -a for all
    • disable verbose tor logs
  • eotk harvest projectname ... # or: -a for all
    • synonyms: onions
    • print list of onions used by projects
  • eotk ps
    • do a stupid grep for possibly orphaned processes
  • eotk genkey
    • synonyms: gen
    • generate an onion key and stash it in secrets.d

Installation

OSX

Currently works on OSX with Homebrew:

  • install homebrew - http://brew.sh/
  • git clone https://github.com/alecmuffett/eotk.git
  • cd eotk
  • sh ./000-setup-osx.sh # installs required software; if you're worried, check it first

Raspbian

  • git clone https://github.com/alecmuffett/eotk.git
  • cd eotk
  • Read 000-setup-raspbian.md and follow the instructions.

Debian and Ubuntu

Try the same instructions as for Raspbian, it seems to work okay although you may need to install a compiler first. The installation involves a lot of compilation and may take 20..30 minutes on a slow machine.

I don't own a site, but I want to experiment!

If you want to experiment with some prefabricated projects, try this:

  • sh ./001-configure-demo.sh # creates a working config file, demo.conf
  • eotk config demo.conf # creates tor & nginx config files; lists onion sites
  • eotk start default
  • Now you can...
    • Connect to one of the onions cited on screen for the default project
    • Play SSL-Certificate-Acceptance-Whackamole
    • Browse a little...
  • eotk stop default

This is really complex, do you have something similar I can play with?

There's another document I wrote, showing how to do something very similar to eotk by using a tool called mitmproxy; if you can use a Linux commandline it will give you something relevant to play with, and you won't have to setup anything permanent.

I want to create a new project / my own configuration!

You can either add a new project to the demo config file, or you can create a new config for yourself. If you want an onion for foo.com, the simplest configuration file probably looks like this:

set project myproject
hardmap secrets.d/xxxxxxxxxxxxxxxx.key foo.com

...and if you create a file called project.conf containing those lines, then you should be able to do:

eotk configure project.conf
eotk start myproject

But how do I create my own "secrets.d/xxxxxxxxxxxxxxxx.key"?

  • Do eotk genkey - it will print the name of the onion it generates
    • Do this as many times as you wish/need.
  • Alternately get a tool like scallion or shallot and use that to "mine" a desirable onion address.
  • Be sure to store your mined private keys in secrets.d with a filename like xxxxxxxxxxxxxxxx.key where xxxxxxxxxxxxxxxx is the corresponding onion address.

But I not only have www.foo.com, I have www.dev.foo.com!

Subdomains are supported like this:

set project myproject
hardmap secrets.d/xxxxxxxxxxxxxxxx.key foo.com dev

...and if you have multiple subdomains:

hardmap secrets.d/xxxxxxxxxxxxxxxx.key foo.com dev blogs dev.blogs [...]

Troubleshooting

Firstly, the logs for any given project will reside in projects.d/<PROJECTNAME>.d/logs.d/

If something is problematic, first try:

  • git pull and...
  • eotk config <filename>.conf again, and then...
  • eotk bounce -a

Lots of broken images, missing images, missing CSS

This is probably an SSL/HTTPS thing.

Because of the nature of SSL self-signed certificates, you have to manually accept the certificate of each and every site for which a certificate has been created. See the second of the YouTube videos for some mention of this.

In short: this is normal and expected behaviour. You can temporarily fix this by:

  • right-clicking on the image for Open In New Tab, and accepting the certificate
  • or using Inspect Element > Network to find broken resources, and doing the same
  • or - if you know the list of domains in advance - visiting the /hello-onion/ URL for each of them, in advance, to accept certificates.

If you get an official SSL certificate for your onion site then the problem will vanish. Until then, I am afraid that you will be stuck playing certificate "whack-a-mole".

Nginx: Bad Gateway

Generally this means that Nginx cannot connect to the remote website, which generally happens because:

  • the site name in the config file, is wrong
  • the nginx daemon tries to do a DNS resolution, which fails

Check the Nginx logfiles in the directory cited above, for confirmation. If DNS resolution is failing, PROBABLY the cause is not running a DNS server locally; therefore in your config file you should add a line like this - to use Google DNS as an example:

set nginx_resolver 8.8.8.8

...and then do:

eotk stop -a
eotk config filename.conf
eotk start -a

I will look into hardcoding the Google DNS server as a default.

I can't connect, it's just hanging

If your onion project has just started, it can take up to a few minutes to connect for the first time; also sometimes TorBrowser caches stale descriptors for older onions. Try restarting TorBrowser (or use the New Identity menu item) and have a cup of tea. If it persists, check the logfiles.

Help I'm Stuck!

Ping @alecmuffett on Twitter, or log an Issue, above.

Acknowledgements

EOTK stands largely on the experience of work I led at Facebook to create www.facebookcorewwwi.onion, but it owes a huge debt to Mike Tigas's work at ProPublica to put their site into Onionspace through using Nginx as a rewriting proxy -- and that he wrote the whole experience up in great detail including sample config files.

Reading this prodded me to learn about Nginx and then aim to shrink & genericise the solution; so thanks, Mike!

Also, thanks go to Christopher Weatherhead for acting as a local Nginx sounding board :-)

And back in history: Michal Nánási, Matt Jones, Trevor Pottinger and the rest of the FB-over-Tor team. Hugs.