Download

Using Releases

All you need to do is to download the latest version in the release section of the repository.

export VERSION=<VERSION>

# Download the release
wget https://github.com/atorrescogollo/offensive-tor-toolkit/releases/download/${VERSION}/offensive-tor-toolkit-${VERSION}.tar.gz

# Uncompress
tar -xvzf offensive-tor-toolkit-${VERSION}.tar.gz

# Move to /opt/offensive-tor-toolkit/
sudo mv offensive-tor-toolkit-${VERSION}* /opt
sudo ln -sf offensive-tor-toolkit-${VERSION} /opt/offensive-tor-toolkit

Using Docker Image

In order to download the toolkit inside a docker container, there is an image published in Docker Hub.

Download binaries from image

Create a temporary container from the image and copy the /dist folder to your host:

You can find the latest version by accessing the release section of the repository.

Now, you will find the toolkit inside the folder you specified (/dist in the example):

Use the toolkit from the container

The toolkit is statically compiled so it can be run directly from the container:

For example, to check if you can access Tor from the container, execute the following tool:

Build your own Docker image

Probably is a good idea to have multiple tools inside a single Docker image. To include the Offensive Tor Toolkit inside your custom image you can use a multi-stage build:

Last updated

Was this helpful?