test_web_application
Perform technology-specific web application penetration testing by analyzing target URLs and detected technologies to identify security vulnerabilities through automated security assessments.
Instructions
Technology-specific web application penetration testing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
target | Yes | Target web application URL | |
technologies | Yes | Detected technologies (e.g., ['WordPress', 'Apache', 'PHP']) |
Input Schema (JSON Schema)
{
"properties": {
"target": {
"description": "Target web application URL",
"type": "string"
},
"technologies": {
"description": "Detected technologies (e.g., ['WordPress', 'Apache', 'PHP'])",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"target",
"technologies"
],
"type": "object"
}