select_tools
Selects optimal security testing tools based on target domain, IP, or URL and scan objectives like comprehensive, fast, stealth, or targeted assessments.
Instructions
AI-powered tool selection based on target profile.
Args: target: Target domain, IP, or URL objective: Scan objective (comprehensive, fast, stealth, targeted)
Returns: Optimized tool selection with recommendations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
objective | No | comprehensive | |
target | Yes |
Input Schema (JSON Schema)
{
"properties": {
"objective": {
"default": "comprehensive",
"title": "Objective",
"type": "string"
},
"target": {
"title": "Target",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}