directory_scan
Scan web directories to discover hidden files and folders using popular security tools for penetration testing and security assessments.
Instructions
Advanced directory scanning with dirb/dirsearch/gobuster/feroxbuster
Input Schema
Name | Required | Description | Default |
---|---|---|---|
recursive | No | Enable recursive scanning | |
target | Yes | Target URL | |
tool | No | Directory scanning tool to use |
Input Schema (JSON Schema)
{
"properties": {
"recursive": {
"description": "Enable recursive scanning",
"type": "boolean"
},
"target": {
"description": "Target URL",
"type": "string"
},
"tool": {
"description": "Directory scanning tool to use",
"enum": [
"dirb",
"dirsearch",
"gobuster",
"feroxbuster"
],
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}