DeepSec / Releases / Current stable

Versioned binaries. Verifiable delivery.

DeepSec v1.1.0 is available as a single executable for five supported platform targets. Every binary has an adjacent SHA-256 file and a permanent versioned path.

v1.1.0Stable release
5 targetsLinux, macOS, Windows
ImmutableVersioned artifact paths
Recommended path

Install with digest verification.

The installer reads the current release manifest, selects the matching executable, validates its SHA-256 digest, and installs it for the active user.

Destination: ~/.local/bin/deepsec by default. Add the directory to PATH when it is not already available.
terminalinstall v1.1.0
curl -fsSL https://cdn.pixelcity.top/deepsec/install.sh | sh

# Optional system bin directory
INSTALL_DIR=/usr/local/bin \
  curl -fsSL https://cdn.pixelcity.top/deepsec/install.sh | sh

# Confirm installation
deepsec --version
# DeepSec 1.1.0
Manual downloads

DeepSec v1.1.0 artifacts.

Choose the binary that matches your operating system and CPU architecture. Download the matching checksum file before transferring or executing the binary.

PlatformArchitectureBinarySHA-256
LinuxIntel / AMD 64-bit deepsec-linux-amd64 checksum
LinuxARM 64-bit deepsec-linux-arm64 checksum
macOSIntel 64-bit deepsec-darwin-amd64 checksum
macOSApple Silicon deepsec-darwin-arm64 checksum
WindowsIntel / AMD 64-bit deepsec-windows-amd64.exe checksum
Verification

Check the bytes before execution.

A checksum failure means the downloaded file does not match the published release. Delete the file, inspect transport and storage, and download it again.

Linux / macOSsha256
curl -fsSLO https://cdn.pixelcity.top/deepsec/releases/v1.1.0/deepsec-linux-amd64.sha256
sha256sum -c deepsec-linux-amd64.sha256

chmod +x deepsec-linux-amd64
./deepsec-linux-amd64 --version
Windows PowerShellsha256
Invoke-WebRequest `
  https://cdn.pixelcity.top/deepsec/releases/v1.1.0/deepsec-windows-amd64.exe.sha256 `
  -OutFile deepsec-windows-amd64.exe.sha256

Get-FileHash .\deepsec-windows-amd64.exe -Algorithm SHA256
.\deepsec-windows-amd64.exe --version
Stable routes

Pinned and versioned paths.

Use versioned URLs for automation and evidence retention. The latest alias exists for convenience and currently points to v1.1.0.

RouteTargetUse
/deepsec/VERSION1.1.0Current release manifest
/deepsec/releases/v1.1.0/Immutable v1.1.0 artifactsProduction and reproducible builds
/deepsec/releases/latest/Current v1.1.0 artifactsConvenience downloads
/deepsec/install.shPlatform-aware installerRecommended local install
/healthCDN health responseService monitoring
Release history

Earlier artifacts remain available.

Archived release files are retained under their original version. Each archive includes matching checksums for all five platform targets.

Current

v1.1.0

Current stable release with verified Linux, macOS, and Windows artifacts.

Open archive
Archived

v1.0.0

Initial cross-platform release retained for reproducible historical downloads.

Open archive
Source

GitHub releases

Release metadata, build context, and repository history for DeepSec.

View on GitHub