get_scan_issues
Retrieve vulnerability issues from a scan by specifying the scan ID and filtering by severity levels, including high, medium, low, and info, for detailed analysis and action.
Instructions
Get vulnerability issues found in a scan
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scan_id | Yes | ID of the scan | |
severity | No | Filter issues by severity |
Input Schema (JSON Schema)
{
"properties": {
"scan_id": {
"description": "ID of the scan",
"type": "string"
},
"severity": {
"description": "Filter issues by severity",
"enum": [
"high",
"medium",
"low",
"info",
"all"
],
"type": "string"
}
},
"required": [
"scan_id"
],
"type": "object"
}