cancelScan
Stop active scans by providing the scan ID. Integrates with Pentest MCP to manage and halt penetration testing processes effectively.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scanId | Yes | The ID of the scan to cancel |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"scanId": {
"description": "The ID of the scan to cancel",
"type": "string"
}
},
"required": [
"scanId"
],
"type": "object"
}