- manuales.py cosecha el --help de las herramientas que no traen man page (ffuf, sqlmap, suite impacket, netexec, hydra...) y lo escribe como markdown en conocimiento/09 - Manuales/. Es la referencia de opciones que la man page no da; complementa el cheatsheet de invocaciones comunes. - indexa.py --publico construye saber-publico.jsonl: glosario + pack de conocimiento con los vectores ya calculados, 100% publico y portable. - busca.py usa ese indice publico como fallback cuando no hay indice personal, asi un clon recien hecho consulta al instante sin reindexar nada. - .gitignore deja pasar saber-publico.jsonl; el personal (saber.jsonl) sigue fuera. - docs/rag.md y el README del pack documentan ambas cosas.
35 lines
1.5 KiB
Markdown
35 lines
1.5 KiB
Markdown
# gobuster — manual
|
|
|
|
Salida de `gobuster --help`, capturada de la propia herramienta. Referencia completa de opciones (las invocaciones del dia a dia estan en el cheatsheet de comandos).
|
|
|
|
```
|
|
Usage:
|
|
gobuster [command]
|
|
|
|
Available Commands:
|
|
completion Generate the autocompletion script for the specified shell
|
|
dir Uses directory/file enumeration mode
|
|
dns Uses DNS subdomain enumeration mode
|
|
fuzz Uses fuzzing mode. Replaces the keyword FUZZ in the URL, Headers and the request body
|
|
gcs Uses gcs bucket enumeration mode
|
|
help Help about any command
|
|
s3 Uses aws bucket enumeration mode
|
|
tftp Uses TFTP enumeration mode
|
|
version shows the current version
|
|
vhost Uses VHOST enumeration mode (you most probably want to use the IP address as the URL parameter)
|
|
|
|
Flags:
|
|
--delay duration Time each thread waits between requests (e.g. 1500ms)
|
|
-h, --help help for gobuster
|
|
--no-color Disable color output
|
|
--no-error Don't display errors
|
|
-z, --no-progress Don't display progress
|
|
-o, --output string Output file to write results to (defaults to stdout)
|
|
-p, --pattern string File containing replacement patterns
|
|
-q, --quiet Don't print the banner and other noise
|
|
-t, --threads int Number of concurrent threads (default 10)
|
|
-v, --verbose Verbose output (errors)
|
|
-w, --wordlist string Path to the wordlist
|
|
|
|
Use "gobuster [command] --help" for more information about a command.
|
|
```
|