burp_active_scan
Perform active vulnerability scanning on web applications using Burp Suite to identify security weaknesses in target URLs and defined scopes.
Instructions
Perform active vulnerability scan using Burp Suite
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scope | No | Additional URLs to include in scope (optional) | |
target | Yes | Target URL to scan |
Input Schema (JSON Schema)
{
"properties": {
"scope": {
"description": "Additional URLs to include in scope (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"target": {
"description": "Target URL to scan",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}