Last updated 4 years ago
The first step is to get a list of all the words from the titanic:
Now we create a new wordlist in flag format:
Then we can use the password cracking tool john to get the flag.
curl http://www.dailyscript.com/scripts/Titanic.txt | tr '[:space:]' '\n' | sed '/^$/d' | | tr -d '.' | tr -d ',' | tr '[:upper:]' '[:lower:]' > wl
for i in $(cat wl); do echo "tjctf{$i}" >> wl2; done
john -w=wl3 hash --format=raw-md5