Skip to content

Instantly share code, notes, and snippets.

@pdelteil
Last active May 26, 2020 01:21
Show Gist options
  • Save pdelteil/28be4e0a3310fa0fa238b499c054fc71 to your computer and use it in GitHub Desktop.
Save pdelteil/28be4e0a3310fa0fa238b499c054fc71 to your computer and use it in GitHub Desktop.
#!/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