Last active
May 26, 2020 01:21
-
-
Save pdelteil/28be4e0a3310fa0fa238b499c054fc71 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
while [ true ]; do | |
pwds=$(python3 convertMorse.py pwd.png 2>&1) | |
#all passwords are lower case | |
pwdsL=$(echo $pwds| tr '[:upper:]' '[:lower:]') | |
echo $pwdsL | |
unzip -P $pwdsL flag*.zip | |
cd flag | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment