fuzzing_parameters
Test extracted web parameters with various payloads using ffuf or wfuzz to identify security vulnerabilities through automated fuzzing techniques.
Instructions
Fuzz extracted parameters with various payloads using ffuf/wfuzz
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parameters | Yes | Array of extracted parameters to fuzz | |
tool | No | Fuzzing tool to use |
Input Schema (JSON Schema)
{
"properties": {
"parameters": {
"description": "Array of extracted parameters to fuzz",
"items": {
"type": "object"
},
"type": "array"
},
"tool": {
"description": "Fuzzing tool to use",
"enum": [
"ffuf",
"wfuzz"
],
"type": "string"
}
},
"required": [
"parameters"
],
"type": "object"
}