Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.6 KB

File metadata and controls

51 lines (36 loc) · 1.6 KB

WHOMST Binary Releases

Pre-compiled binaries for multiple platforms are available in the releases/ directory.

Available Platforms

Windows

  • whomst-windows-x86.exe - Windows 32-bit (Intel/AMD x86)
  • whomst-windows-x64.exe - Windows 64-bit (Intel/AMD x64)
  • whomst-windows-arm64.exe - Windows ARM64 (Surface Pro X, etc.)

macOS

  • whomst-macos-intel - macOS Intel processors (x64)
  • whomst-macos-arm64 - macOS Apple Silicon (M1/M2/M3)

Linux

  • whomst-linux-x86 - Linux 32-bit (Intel/AMD x86)
  • whomst-linux-x64 - Linux 64-bit (Intel/AMD x64)
  • whomst-linux-arm32 - Linux ARM 32-bit (Raspberry Pi, etc.)
  • whomst-linux-arm64 - Linux ARM 64-bit (ARM servers, etc.)

Usage

  1. Download the appropriate binary for your platform
  2. Make executable (Linux/macOS): chmod +x whomst-*
  3. Copy your configuration: cp config.yaml.example config.yaml
  4. Edit config with your DeHashed credentials
  5. Run: ./whomst-<platform> -target <username>

Platform Detection

Windows:

  • Check System Type in System Information
  • x86 = 32-bit, x64 = 64-bit, ARM64 = ARM processors

macOS:

  • Intel Macs: Use whomst-macos-intel
  • Apple Silicon (M1/M2/M3): Use whomst-macos-arm64
  • Check: uname -m (x86_64 = Intel, arm64 = Apple Silicon)

Linux:

  • Check architecture: uname -m
  • i386/i686 = x86, x86_64 = x64, armv7l = arm32, aarch64 = arm64

File Sizes

All binaries are approximately 11-13 MB due to Go's static compilation.

Security Note

Always verify binary integrity and only download from trusted sources. Consider building from source for maximum security assurance.