auto_pentest
Perform automated penetration testing to identify security vulnerabilities in networks, web applications, or full systems using configurable scope and intensity levels for authorized security assessments.
Instructions
Perform comprehensive automated penetration test
Input Schema
Name | Required | Description | Default |
---|---|---|---|
intensity | No | Testing intensity level | |
scope | No | Scope of testing | |
target | Yes | Target IP, domain, or URL |
Input Schema (JSON Schema)
{
"properties": {
"intensity": {
"description": "Testing intensity level",
"enum": [
"passive",
"active",
"aggressive"
],
"type": "string"
},
"scope": {
"description": "Scope of testing",
"enum": [
"network",
"web",
"full"
],
"type": "string"
},
"target": {
"description": "Target IP, domain, or URL",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}