Bandit 9
Objectives
Level Goal The password for the next level is stored in the file data.txt and is the only line of text that occurs only once
Solution
let's cat the file sort it and find unique lines
that was pretty easy
now let's python that thing..
Objectives
Level Goal The password for the next level is stored in the file data.txt and is the only line of text that occurs only once
Solution
let's cat the file sort it and find unique lines
bandit8@bandit:~$ cat data.txt | sort |uniq -uUsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR
that was pretty easy
now let's python that thing..
Comments
Post a Comment