Integrate Lacework with Vulnetix. Use the Lacework CLI to trigger container vulnerability assessments and export JSON findings for upload to Vulnetix.
SaaS platformJSON
Run Lacework in CI
Scan on every push and upload the results to Vulnetix:
- name: Install Lacework CLI
run: curl https://raw.githubusercontent.com/lacework/go-sdk/main/cli/install.sh | bash
- name: Configure Lacework
run: |
lacework configure set --account ${{ secrets.LACEWORK_ACCOUNT }} --api_key ${{ secrets.LACEWORK_API_KEY }} --api_secret ${{ secrets.LACEWORK_API_SECRET }}
- name: Scan container image
run: |
lacework vulnerability container scan index.docker.io ${{ github.repository }} ${{ github.sha }} --json > lacework-findings.json
- name: Upload to Vulnetix
run: vulnetix upload --file lacework-findings.json
Centralise Lacework results in Vulnetix
Upload Lacework 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.