parameter_extraction
Extract parameters from web applications using automated crawling and manual methods to identify input fields for security testing and vulnerability assessment.
Instructions
Extract parameters from web applications using Katana and manual methods
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Crawling depth (default: 2) | |
target | Yes | Target URL |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"description": "Crawling depth (default: 2)",
"type": "number"
},
"target": {
"description": "Target URL",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}