Run SecLists from a Docker Container
Avoid copying huge wordlists into every container.
Example
docker run --rm -it -v ~/SecLists:/opt/SecLists kali:latest bashInside the container:
gobuster dir -u https://target -w /opt/SecLists/Discovery/Web-Content/raft-medium-directories.txtDiagram
flowchart LR
A[Host SecLists] -->|bind mount| B[Docker container]
B --> C[Scanning tools]
Use read-only mounts (-v ~/SecLists:/opt/SecLists:ro) to prevent accidental modifications.