burp_export
Export Burp Suite security scan results in XML, HTML, or JSON formats for analysis and reporting during penetration testing assessments.
Instructions
Export Burp Suite scan results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Export format (default: xml) | |
output_path | No | Output file path (optional) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Export format (default: xml)",
"enum": [
"xml",
"html",
"json"
],
"type": "string"
},
"output_path": {
"description": "Output file path (optional)",
"type": "string"
}
},
"required": [],
"type": "object"
}