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
|
# Crack password for a specific user
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
--volume "/etc:/etc" \
|
--volume "/etc:/etc" \
|
||||||
--user root \
|
--volume "$(pwd)/brute/source/wordlist2.txt:/wordlist2.txt" \
|
||||||
bruteforce-test:latest \
|
bruteforce-optimized:latest \
|
||||||
<username> <wordlist_path>
|
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
|
### Example Commands
|
||||||
|
|||||||
16
README.vi.md
16
README.vi.md
@@ -55,9 +55,19 @@ docker images bruteforce-optimized bruteforce-test
|
|||||||
# Crack mật khẩu cho user cụ thể
|
# Crack mật khẩu cho user cụ thể
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
--volume "/etc:/etc" \
|
--volume "/etc:/etc" \
|
||||||
--user root \
|
--volume "$(pwd)/brute/source/wordlist2.txt:/wordlist2.txt" \
|
||||||
bruteforce-test:latest \
|
bruteforce-optimized:latest \
|
||||||
<username> <đường_dẫn_wordlist>
|
root /wordlist2.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
### Chạy trực tiếp từ Docker Hub
|
||||||
|
```bash
|
||||||
|
# Kéo và chạy image công khai
|
||||||
|
docker run --rm \
|
||||||
|
--volume "/etc:/etc" \
|
||||||
|
--volume "$(pwd)/brute/source/wordlist2.txt:/wordlist2.txt" \
|
||||||
|
tuankiet2s/bruteforce-container:latest \
|
||||||
|
root /wordlist2.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
### Ví Dụ Lệnh
|
### Ví Dụ Lệnh
|
||||||
|
|||||||
Reference in New Issue
Block a user