top of page
Identifying the only human readable file in a Linux folder - Over the wire Bandit level 4 - 5 password revealed
Dec 27, 2024
1 min read
0
9
0
The over the wire Capture the Flag games are a great way to sharpen your command line linux skills.
To obtain the password to level 5 the prompt is:
The password for the next level is stored in the only human-readable file in the inhere directory. Tip: if your terminal is messed up, try the “reset” command.
What makes a file human-readable?
Let's find out!
When we run the ls command we see a folder:
Let's navigate to that folder:
cd inhere
There are ten possible files.
If we run the file command we see the following:
File07 is ASCII text aka "human readable".
Let's cat that to get our password!
cat ./-file07
Related Posts
Comments
Share Your ThoughtsBe the first to write a comment.
bottom of page