8 lines
145 B
Bash
Executable File
8 lines
145 B
Bash
Executable File
#! /bin/bash
|
|
for wordlist in ~/wordlists/passwords/*; do
|
|
echo "Trying $wordlist..."
|
|
fcrackzip -v -D -p "$wordlist" files.zip && break
|
|
done
|
|
|
|
|