Tool integration

Amazon Inspector Integration Guide

AWS native vulnerability scanning for EC2, Lambda, and container images

Get a Free API Key

Integrate Amazon Inspector with Vulnetix. Export vulnerability findings and SBOMs from Amazon Inspector via the AWS CLI or SBOM export feature for upload to Vulnetix.

SaaS platformCycloneDXSPDXJSON

Run Amazon Inspector in CI

Scan on every push and upload the results to Vulnetix:

- name: Configure AWS credentials
  uses: aws-actions/configure-aws-credentials@v4
  with:
    role-to-assume: arn:aws:iam::ACCOUNT:role/InspectorRead
    aws-region: us-east-1

- name: Export Inspector SBOM
  run: |
    EXPORT_ID=$(aws inspector2 create-sbom-export       --resource-filter-criteria '{}'       --report-format CYCLONEDX_1_4       --s3-destination "{"bucketName":"$BUCKET","keyPrefix":"sboms/"}"       --query 'reportId' --output text)
    echo "Export started: $EXPORT_ID"

Centralise Amazon Inspector results in Vulnetix

Upload Amazon Inspector CycloneDX, SPDX, 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.

Amazon Inspector documentation ↗

Wire Amazon Inspector into your CI/CD pipeline →