burp_proxy_scan
Perform passive security scanning by proxying target URLs through Burp Suite to identify vulnerabilities during authorized penetration testing.
Instructions
Perform passive scan through Burp Suite proxy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | Scan duration in seconds (default: 300) | |
target | Yes | Target URL to proxy through |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"description": "Scan duration in seconds (default: 300)",
"type": "number"
},
"target": {
"description": "Target URL to proxy through",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}