A collection of statically compiled tools like Nmap and Socat.
Find a file
takeshix 4fcdb4e753 Removed directories with binaries
The bin, packaged and data directories have been removed in favor of
archives attached to tags/releases.
2018-04-19 21:05:18 +02:00
recipes Added armhf and aarch64 recipes, binaries and prepackaged archives 2018-02-26 17:02:00 +01:00
.gitattributes Initial commit 2018-02-22 13:54:13 +01:00
.gitignore Initial commit 2018-02-22 13:54:13 +01:00
README.md Added armhf and aarch64 recipes, binaries and prepackaged archives 2018-02-26 17:02:00 +01:00
Vagrantfile Added armhf and aarch64 recipes, binaries and prepackaged archives 2018-02-26 17:02:00 +01:00

static-toolbox

This repository includes prebuild static binaries and build-recipes for various tools like Nmap.

The Linux versions are compiled with the musl-cross toolchain and the openssl-pm-snapshot fork of OpenSSL in order to support a wide range of SSL/TLS features (Warning: some of them are insecure!).

Nmap

Precompiled versions of Nmap are available for the following operating systems/architectures:

Packaged Archives

For Nmap it is recommended to use one of the packaged archives. These include the nmap, ncat and nping binaries and also the Nmap data directory that contains service probes and NSE scripts.

Socat

Precompiled versions of socat are available for the following operating systems/architectures:

Building with Vagrant

The recipes are supposed to be built in Docker containers. In case Docker is not available, it is recommended to use Vagrant to built everything in a VM, e.g. Nmap for Linux x86:

vagrant up
vagrant ssh
cd /vagrant/recipes/nmap/linux_x86
sudo docker build -t static-toolbox-nmap-x86 .
sudo docker run -v $(pwd)/output:/output static-toolbox-nmap-x86

This is also the recommended way to run the build scripts without Docker without creating directories like /build and /output on your host system.