Goal: Find the password and log into level 9. The password is the only password that appears only once.
First, lets see what is even in the data.txt
file.
As we can see there are hundreds of possible passwords so we are going to need to do more work. First, lets sort all of the passwords so it is easier to pick out unique passwords.
Okay we could definitely look through all of these passwords to see any unique passwords. However, we could also use the uniq
command! This command usually just gets rid of repeated lines but we can use the -u
flag to only print unique lines.
Now we have our password for level 9 and we sign into the next level!