Files
ctf/basically gambling/getflag_b46.sh
2018-07-08 19:06:10 -04:00

15 lines
299 B
Bash
Executable File

#!/bin/bash
echo "Attempting to get flag..."
ATTEMPT=1
while :;
do
echo "Attempt ${ATTEMPT}..."
ATTEMPT=$[ATTEMPT + 1]
RESULT=$(nc localhost 6667 | base64 -d | strings | grep "MNZ{")
if [[ $RESULT ]]; then
echo "Found the flag"
echo $RESULT
break
fi
done