Download AuditWalk

Linux CLI is available now. Free to start, no account required. Upgrade to Pro when you need continuous watch, automation, and extended retention. Choose your plan below, then download.

Choose your plan.

Start free with the full core CLI. Upgrade to Pro when you need continuous watch, automation, and retention.

Tier 01

Free

The full core CLI. No account, no expiry.

$0

free forever — Linux CLI

  • scan — full filesystem observation
  • baseline — trusted reference state
  • preflight — targeted verification
  • compare — drift detection
  • JSON export
Download Free CLI

Tier 03

Enterprise

For teams with governance, policy, and integration requirements.

Inquiry

share interest and requirements

  • Enterprise inquiry list
  • Share your environment and needs
  • Help shape future enterprise scope

No release timeline is announced. This signup is for demand and discovery only.

By joining the enterprise interest list, you opt in to enterprise-related email updates. See Privacy Policy and Cookies Policy.

Does Free expire?

No. Core CLI remains available with no time limit.

Can I upgrade later?

Yes. License keys apply to the same install.

How long does install take?

Under 2 minutes on common Linux setups.

Get Your Downloads

Already have a Pro license? Enter your key to access all downloads your license covers — including the GUI when it ships. No account required.

Get the Linux CLI

Linux — x86_64

Linux CLI

Available now

Free baseline workflow: scan, baseline, preflight, and compare. Requires Python 3.9+ and pip via python3 -m pip. Advisory interpretation and continuous monitoring require a paid plan.

Download & Install Guide

macOS — Apple Silicon & Intel

macOS CLI

Coming soon

The macOS CLI build follows Linux. Join the waitlist to get notified when it ships.

Notify Me

Windows — x86_64

Windows CLI

Coming soon

Windows CLI follows macOS. Join the waitlist to get notified when it ships.

Notify Me

System Requirements — Linux CLI

AuditWalk is distributed as a Python wheel (.whl). Python 3 and pip must be installed before you can install or run it. Check your versions first:

Check Python python3 --version
Check pip python3 -m pip --version
Python 3.9 or later (check: python3 --version)
pip pip must be available (check: python3 -m pip --version)
Architecture x86_64 (amd64)
Distributions Debian, Ubuntu, Fedora, CentOS, RHEL, Arch
Kernel Linux 5.4 or later
Disk space ~50 MB for binary + baseline data
Network Required for license activation only
Permissions Read access to scan paths; sudo optional

Install the CLI

After downloading the .whl file, open a terminal in the folder where it was saved and run the following command. This installs AuditWalk as a command-line tool for your user account.

Install python3 -m pip install --user auditwalk-0.1.3-py3-none-any.whl
Confirm auditwalk --version

This installs AuditWalk for your user account only. Do not use sudo unless the Troubleshooting guide specifically tells you to — running sudo pip install can damage your system Python.

The confirm command should print the installed version number. If your terminal says auditwalk: command not found, your user bin directory may not be on your PATH — see the Troubleshooting guide.

Verify the download (recommended)

Before installing, confirm that the file you downloaded matches the official release. Run the command below in the same folder where you saved the .whl file. The output should exactly match the SHA-256 hash listed here. If it doesn't match, do not install — re-download the file.

Version 0.1.3
SHA-256 9bcd5942261d505f2962e87280898c811719c8c04feb8a3b13a165c400c8488c
Run this command sha256sum auditwalk-0.1.3-py3-none-any.whl

Authenticate the release (optional)

This step uses GPG to confirm the .whl file was signed by the AuditWalk release key and has not been altered. You need gpg installed on your system. Complete these steps in order — all files must be in the same folder.

Step 1 — Download the two extra files. Save both into the same folder as the .whl file you already downloaded:

Public key auditwalk-release-public.asc — the AuditWalk release signing key
Signature auditwalk-0.1.3-py3-none-any.whl.asc — the signature file for this release

Step 2 — Import the public key. Run this once. It adds the AuditWalk release key to your local GPG keyring:

Run once gpg --import auditwalk-release-public.asc

Step 3 — Verify the signature. This checks that the .whl file was signed by the imported key. A Good signature result means the file is authentic:

Verify gpg --verify auditwalk-0.1.3-py3-none-any.whl.asc auditwalk-0.1.3-py3-none-any.whl

Expected key details:

Fingerprint 5192 7A40 EEF4 461E 1E64  34ED 8781 7355 C614 CC59
UID AuditWalk Release Signing <help@auditwalk.com>

Installed and confirmed? The User Guide walks through your first scan, setting a trusted baseline, and reading the output.

User Guide →