Integrate Coinbase Salus with Vulnetix. Run Salus to coordinate multiple security scanners (Brakeman, npm audit, Bundler Audit, and more) in a single Docker command and export JSON findings.
CLI toolJSON
Install & scan
$ docker pull coinbase/salus $ docker run --rm -v $(pwd):/home/repo coinbase/salus # Output is written to salus_report.json in the mounted directory
Run Coinbase Salus in CI
Scan on every push and upload the results to Vulnetix:
- name: Run Salus security scan
run: |
docker run --rm -v ${{ github.workspace }}:/home/repo coinbase/salus
- name: Upload to Vulnetix
run: vulnetix upload --file salus_report.json
Centralise Coinbase Salus results in Vulnetix
Upload Coinbase Salus JSON output to the Vulnetix platform to deduplicate findings, prioritise them with EPSS, CISA KEV and Coalition ESS exploit intelligence, and track remediation across every scanner in a single queue.