Tool integration

Boofuzz Integration Guide

Network protocol fuzzer — fuzz any TCP/UDP/serial protocol with Python

Get a Free API Key

Integrate Boofuzz with Vulnetix. Fuzz network protocols to discover crashes and unexpected responses, then convert findings to JSON for upload.

Python / Network ProtocolsCLI toolJSON

Install & scan

$ # Recommended — ephemeral environment
uv run --with boofuzz python3 -c "import boofuzz; print(boofuzz.__version__)"

# Or install globally
pip install boofuzz
$ # Run the fuzz script
uv run --with boofuzz python3 fuzz_protocol.py

Run Boofuzz in CI

Scan on every push and upload the results to Vulnetix:

- name: Install Boofuzz
  run: pip install boofuzz

- name: Start target service
  run: ./target_server &

- name: Run Boofuzz (10 minutes)
  run: timeout 600 python3 fuzz_protocol.py || true

- name: Export crashes
  run: python3 export_crashes.py

- name: Upload to Vulnetix
  run: vulnetix upload --file boofuzz-crashes.json

Centralise Boofuzz results in Vulnetix

Upload Boofuzz 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.

Boofuzz documentation ↗  ·  Source repository ↗

Wire Boofuzz into your CI/CD pipeline →