VulHunt Enterprise Edition
VulHunt Enterprise Edition (EE) is a commercial product with additional features and support beyond the Community Edition (CE). For further details, contact your Binarly customer success representative.VulHunt Community Edition
To install VulHunt Community Edition (CE) and start developing your own rules, or extensions, follow the instructions below.Installation from precompiled binaries
Installation via precompiled binaries is the recommended method for most users. By default, the installation script will install the latest stable release of VulHunt CE. To install a specific version, set theVULHUNT_VERSION environment variable to the desired version tag (e.g., v1.0.0). To set a custom installation directory, set the VULHUNT_INSTALL_DIR environment variable to the desired path (e.g., /opt/vulhunt-ce).
Linux and macOS
Windows
Installation/usage via Docker
VulHunt CE is also available as a Docker image, which can be used to run VulHunt in a containerized environment.- Install Docker.
- Clone VulHunt Community Edition repository including its submodules:
- Build the Docker image:
- Run the Docker container:
Installation from source
- Install Git.
- Clone VulHunt Community Edition repository including its submodules:
- Install the Rust toolchain and a recent version of CMake and Clang (20 or later).
- Install cargo-make:
- Compile and install VulHunt:
Auxiliary data
When installing from source, the auxiliary data must be obtained manually:BIAS_DATA to point to the cloned directory, or pass it directly via the --data argument.
Type libraries and processor specifications must be built before first use. On Linux/macOS:
--data <PATH1>:<PATH2> (on Windows, use ; as the separator).
Updating
To update an existing local copy of VulHunt CE to the latest version:- Under the
vulhuntdirectory, pull the latest changes:
- Update the crates:
- Compile and install the new version:
Integrations
Binary Ninja
VulHunt integrates natively with Binary Ninja, where a Binary Ninja database can act as a source of truth for function starts, symbols, and other data. To enable this integration, VulHunt needs to be built with thebndb feature enabled. A valid headless license for Binary Ninja is required to use this integration.