directory_bruteforce
Discover hidden directories and files on web servers by systematically testing common paths and extensions to identify exposed resources during security assessments.
Instructions
Bruteforce directories and files on web server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
extensions | No | File extensions to check | |
url | Yes | Target URL | |
use_seclists | No | Use SecLists common lists if no wordlist provided | |
wordlist | No | Wordlist to use |
Input Schema (JSON Schema)
{
"properties": {
"extensions": {
"description": "File extensions to check",
"items": {
"type": "string"
},
"type": "array"
},
"url": {
"description": "Target URL",
"type": "string"
},
"use_seclists": {
"description": "Use SecLists common lists if no wordlist provided",
"type": "boolean"
},
"wordlist": {
"description": "Wordlist to use",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}