Download

Pre-built Binaries

Pre-built binaries are available at the latest GitHub release. The primary artifacts are statically linked musl builds for Linux x64 and arm64 — no libc dependency, no install step, runs on any Linux system. Both default and slim variants are published. glibc builds are available as secondary artifacts for environments that require them.

Build from Source

If you'd rather build from source, clone the repo and run a standard release build. You'll need the Rust toolchain installed.

git clone https://github.com/block65/wallhack.git
cd wallhack
cargo build --release

Cross-compilation

To build for a different target platform, use cross. It handles the toolchain setup automatically.

Linux x64 (musl, fully static)

cross build --release --target x86_64-unknown-linux-musl

Windows x64

cross build --release --target x86_64-pc-windows-gnu