Vulnetix CLI & GitHub Action
This GitHub Action provides the Vulnetix CLI for your workflows, enabling automated vulnerability management directly in your CI/CD pipeline.
Please also check out our GitHub App for additional integrations.
Vulnetix supports all major platforms and installation methods:
| Method |
Linux |
macOS |
Windows |
CI/CD |
Enterprise |
Installation |
| Homebrew |
✅ |
✅ |
- |
- |
✅ |
brew install vulnetix/tap/vulnetix |
| Scoop |
- |
- |
✅ |
- |
✅ |
scoop install vulnetix |
| Nix |
✅ |
✅ |
- |
✅ |
✅ |
nix profile install github:Vulnetix/cli |
| Go Install |
✅ |
✅ |
✅ |
✅ |
✅ |
go install github.com/vulnetix/cli@latest |
| Binary Download |
✅ |
✅ |
✅ |
✅ |
✅ |
Direct download with curl |
| From Source |
✅ |
✅ |
✅ |
✅ |
✅ |
Full customization |
| GitHub Actions |
✅ |
✅ |
✅ |
✅ |
✅ |
Native GitHub integration |
| GitLab CI |
✅ |
✅ |
✅ |
✅ |
✅ |
GitLab pipeline integration |
| Azure DevOps |
✅ |
✅ |
✅ |
✅ |
✅ |
Azure pipeline integration |
| Bitbucket |
✅ |
✅ |
✅ |
✅ |
✅ |
Bitbucket pipeline integration |
Architecture Support: AMD64, ARM64, ARM, 386 across all platforms
Quick Start Examples
Homebrew (Recommended)
brew tap vulnetix/tap
brew install vulnetix
vulnetix
Scoop (Windows)
scoop bucket add vulnetix https://github.com/Vulnetix/scoop-bucket
scoop install vulnetix
vulnetix
Nix
nix profile install github:Vulnetix/cli
vulnetix
Go Install
go install github.com/vulnetix/cli@latest
vulnetix
Local Binary
Download and run the binary directly:
# Linux AMD64
curl -L https://github.com/Vulnetix/cli/releases/latest/download/vulnetix-linux-amd64 -o vulnetix
chmod +x vulnetix && ./vulnetix --org-id "your-org-id-here"
# macOS (Intel)
curl -L https://github.com/Vulnetix/cli/releases/latest/download/vulnetix-darwin-amd64 -o vulnetix
chmod +x vulnetix && ./vulnetix --org-id "your-org-id-here"
# macOS (Apple Silicon)
curl -L https://github.com/Vulnetix/cli/releases/latest/download/vulnetix-darwin-arm64 -o vulnetix
chmod +x vulnetix && ./vulnetix --org-id "your-org-id-here"
# Windows (PowerShell)
Invoke-WebRequest -Uri "https://github.com/Vulnetix/cli/releases/latest/download/vulnetix-windows-amd64.exe" -OutFile "vulnetix.exe"
.\vulnetix.exe --org-id "your-org-id-here"
📖 View detailed usage examples →
Available Tasks
Vulnetix supports multiple task types to cover different aspects of vulnerability management:
| Task |
Description |
Use Case |
Required Flags |
info |
Auth healthcheck (default) |
Verify credential setup |
- |
Documentation
Distribution
Vulnetix CLI is published on each release:
- Homebrew Tap --
brew install vulnetix/tap/vulnetix
- Scoop Bucket --
scoop install vulnetix (Windows)
- Nix Flake --
nix profile install github:Vulnetix/cli
- GitHub Releases -- Go Install, Binary Downloads
- GitHub Marketplace -- GitHub Actions integration