Tool integration

Burp Suite Integration Guide

Industry-standard web security testing platform from PortSwigger

Get a Free API Key

Integrate Burp Suite findings with Vulnetix. Export scan results from Burp Suite Professional or Enterprise Edition as XML or JSON, then upload to Vulnetix for centralised vulnerability management.

SaaS platformXMLHTMLJSON

Run Burp Suite in CI

Scan on every push and upload the results to Vulnetix:

- name: Trigger Burp Enterprise scan
  id: scan
  run: |
    SCAN=$(curl -s -X POST       -H "Authorization: Bearer ${{ secrets.BURP_API_KEY }}"       -H "Content-Type: application/json"       -d "{"name":"CI Scan","urls":["${{ secrets.TARGET_URL }}"]}"       "${{ secrets.BURP_ENTERPRISE_URL }}/api/v1/scans")
    echo "scan_id=$(echo $SCAN | jq -r '.id')" >> $GITHUB_OUTPUT

- name: Download report
  run: |
    curl -s -H "Authorization: Bearer ${{ secrets.BURP_API_KEY }}"       "${{ secrets.BURP_ENTERPRISE_URL }}/api/v1/scans/${{ steps.scan.outputs.scan_id }}/report"       -o burp-report.xml

- name: Upload to Vulnetix
  run: vulnetix upload --file burp-report.xml

Centralise Burp Suite results in Vulnetix

Upload Burp Suite XML, HTML, 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.

Burp Suite documentation ↗

Wire Burp Suite into your CI/CD pipeline →