Update README files to include instructions for running Docker images directly from Docker Hub, enhancing clarity on usage with specific wordlist paths.
This commit is contained in:
16
README.md
16
README.md
@@ -55,9 +55,19 @@ docker images bruteforce-optimized bruteforce-test
|
||||
# Crack password for a specific user
|
||||
docker run --rm \
|
||||
--volume "/etc:/etc" \
|
||||
--user root \
|
||||
bruteforce-test:latest \
|
||||
<username> <wordlist_path>
|
||||
--volume "$(pwd)/brute/source/wordlist2.txt:/wordlist2.txt" \
|
||||
bruteforce-optimized:latest \
|
||||
root /wordlist2.txt
|
||||
```
|
||||
|
||||
### Run directly from Docker Hub
|
||||
```bash
|
||||
# Pull and run public image
|
||||
docker run --rm \
|
||||
--volume "/etc:/etc" \
|
||||
--volume "$(pwd)/brute/source/wordlist2.txt:/wordlist2.txt" \
|
||||
tuankiet2s/bruteforce-container:latest \
|
||||
root /wordlist2.txt
|
||||
```
|
||||
|
||||
### Example Commands
|
||||
|
||||
Reference in New Issue
Block a user