Skip to content
/ cli Public

Automate vulnerability triage which prioritizes remediation over discovery

License

Notifications You must be signed in to change notification settings

Vulnetix/cli

Repository files navigation

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.

Platform Support

Vulnetix supports all major platforms and installation methods:

Method Linux macOS Windows CI/CD Enterprise Installation
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

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:

  • GitHub Releases -- Go Install, Binary Downloads
  • GitHub Marketplace -- GitHub Actions integration

Contributors