start_scan
Initiate vulnerability scans on target URLs using specified scan types (passive, active, full) via Burpsuite MCP Server to identify security issues.
Instructions
Start a new vulnerability scan on a target URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scan_type | No | Type of scan to perform | |
target | Yes | Target URL to scan (e.g., https://example.com) |
Input Schema (JSON Schema)
{
"properties": {
"scan_type": {
"description": "Type of scan to perform",
"enum": [
"passive",
"active",
"full"
],
"type": "string"
},
"target": {
"description": "Target URL to scan (e.g., https://example.com)",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}