Bandit Level 7 β Level 8

List the file, and cat that data.txt file:
ls
cat data.txt

As we can see it is a big text file, and its hard but not possible to find that password manually, but we will use a tool which will help us called grep. Grep will search for a specific pattern or regex in a file and return that result. So we will use grep and we will use the word mentioned in the challenge description:
grep 'millionth'data.txt
# OR we can cat that file and send the result to grep command with the PIPE:
cat data.txt | grep 'millionth'

We found the password for the next user.
Last updated