misc/pw_crack_5

This commit is contained in:
2024-09-03 17:38:12 +02:00
parent a2cc26d577
commit 3fbaaa21b4
6 changed files with 65605 additions and 0 deletions

6
misc/pw_crack_5/solve.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
for pw in $(cat ./dictionary.txt); do
echo "$pw"
./level5.py <<<"$pw" | grep -o 'picoCTF{.*}' && exit 0
done