v1.1.0
Current stable release with verified Linux, macOS, and Windows artifacts.
Open archiveDeepSec 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.
The installer reads the current release manifest, selects the matching executable, validates its SHA-256 digest, and installs it for the active user.
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
Choose the binary that matches your operating system and CPU architecture. Download the matching checksum file before transferring or executing the binary.
| Platform | Architecture | Binary | SHA-256 |
|---|---|---|---|
| Linux | Intel / AMD 64-bit | deepsec-linux-amd64 | checksum |
| Linux | ARM 64-bit | deepsec-linux-arm64 | checksum |
| macOS | Intel 64-bit | deepsec-darwin-amd64 | checksum |
| macOS | Apple Silicon | deepsec-darwin-arm64 | checksum |
| Windows | Intel / AMD 64-bit | deepsec-windows-amd64.exe | checksum |
A checksum failure means the downloaded file does not match the published release. Delete the file, inspect transport and storage, and download it again.
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
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
Use versioned URLs for automation and evidence retention. The latest alias exists for convenience and currently points to v1.1.0.
| Route | Target | Use |
|---|---|---|
/deepsec/VERSION | 1.1.0 | Current release manifest |
/deepsec/releases/v1.1.0/ | Immutable v1.1.0 artifacts | Production and reproducible builds |
/deepsec/releases/latest/ | Current v1.1.0 artifacts | Convenience downloads |
/deepsec/install.sh | Platform-aware installer | Recommended local install |
/health | CDN health response | Service monitoring |
Archived release files are retained under their original version. Each archive includes matching checksums for all five platform targets.
Current stable release with verified Linux, macOS, and Windows artifacts.
Open archiveInitial cross-platform release retained for reproducible historical downloads.
Open archiveRelease metadata, build context, and repository history for DeepSec.
View on GitHub