OverTheWire Bandit: Level 5-9

Below are my solutions to Bandit level 5 to 9 continuing from Level 0-4. Let’s get started~!!

Level 5

Task

Below is the task for Level 5.

Find the password that is stored in the only file in the "inhere" directory that is human-readable.

My Solution

First, I ran the following commands to list all the files in the “inhere” directory.

ls
cd inhere
ls -a

In the “inhere” directory, there were ten files named “-file00” to “-file09”. To find the human-readable file, the type of each file must be known.

OverTheWire Bandit: Level 0-4

One of the most recommended way to learn Linux commands and basics in CTF is completing Bandit from OverTheWire. Therefore, I decided to complete this challenge first before any other CTF challenges. Here, I am planning to share task, my approach, and lessons that I learned from each level. Moreover, I sincerely wish to express my gratitude towards the developers of this platform! Then, let’s get started!

Level 0

Task

Below is the task for Level 0.