adaptive_strategy
Generate penetration testing strategies by analyzing detected services, open ports, and technologies to create targeted security assessment plans.
Instructions
Generate adaptive penetration testing strategy based on detected services and OS
Input Schema
Name | Required | Description | Default |
---|---|---|---|
existing_vulns | No | Array of existing vulnerabilities (optional) | |
ports | Yes | Array of open ports and services | |
technologies | Yes | Array of detected technologies |
Input Schema (JSON Schema)
{
"properties": {
"existing_vulns": {
"description": "Array of existing vulnerabilities (optional)",
"items": {
"type": "object"
},
"type": "array"
},
"ports": {
"description": "Array of open ports and services",
"items": {
"type": "object"
},
"type": "array"
},
"technologies": {
"description": "Array of detected technologies",
"items": {
"type": "object"
},
"type": "array"
}
},
"required": [
"ports",
"technologies"
],
"type": "object"
}