start_scan
Initiate a vulnerability scan on a target IP or hostname using specified scan types like basic-network-scan, web-app-scan, or compliance-scan to identify security risks.
Instructions
Start a new vulnerability scan against a target
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scan_type | Yes | Type of scan to run (basic-network-scan, web-app-scan, compliance-scan) | |
target | Yes | Target IP address or hostname to scan |
Input Schema (JSON Schema)
{
"properties": {
"scan_type": {
"description": "Type of scan to run (basic-network-scan, web-app-scan, compliance-scan)",
"type": "string"
},
"target": {
"description": "Target IP address or hostname to scan",
"type": "string"
}
},
"required": [
"target",
"scan_type"
],
"type": "object"
}