Skip to content

Commit

Permalink
Update solve
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorNelson authored Jul 16, 2024
1 parent 011ca14 commit 5062a4a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion welcome/restart/solve
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ cat <<END | while read LINE; do echo "$LINE"; sleep 0.1; done
⠀⠙⠓⠚⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠛⠓⠒⠚⠛⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
END

PASSWORD=$(</flag tail -c +13 | head -c4)
if [ ! -f /flag ]; then
echo "You missed your chance! The flag is already gone; restart the challenge!"
exit 1
fi

PASSWORD=$(sha256sum /flag | cut -d' ' -f1 | head -c20)
echo "WHAT IS THE PASSWORD??? If you don't know it, just guess."
read -p "> "

Expand Down

0 comments on commit 5062a4a

Please sign in to comment.