Download Bulwark
Looking up the latest release…
Linux, x86_64. Built on Ubuntu 22.04 (glibc 2.35), so it runs on Ubuntu 22.04+, Debian 12+, and Fedora 36+.
Desktop app
The GUI: dashboard, ClamAV scanning with real-time protection, compliance view, and scan history.
bash
# Debian / Ubuntu
sudo dpkg -i bulwark-desktop_*_amd64.deb
# Fedora / RHEL
sudo rpm -i bulwark-desktop-*.x86_64.rpm
# AppImage — portable, nothing to install
chmod +x bulwark-desktop-*-x86_64.AppImage
./bulwark-desktop-*-x86_64.AppImageCLI
bulwarkctl scans from a terminal — no display session, so it works over plain SSH on a headless box. Same engine and same rule pack as the GUI.
bash
sudo dpkg -i bulwarkctl_*_amd64.deb # or: sudo rpm -i bulwarkctl-*.x86_64.rpm
bulwarkctl scanVerify your download
Every release ships a SHA256SUMS file. Check what you downloaded against it before installing:
bash
sha256sum -c SHA256SUMS --ignore-missingBuild from source
Bulwark is AGPL-3.0-or-later. If you'd rather build it yourself — see the architecture guide and contributing guide:
bash
git clone https://github.com/vietanhdev/bulwark
cd bulwark
cargo build --release --workspace # engine + CLI
cd apps/bulwark-app && npm install && cargo tauri build # desktop app