Level 3 → 4
Level Goal
The password for the next level is stored in a hidden file in the inhere directory.
Write-Up
List the content of the current directory to verify the existence of inhere directory:
ls
Navigate to the inhere directory and list all files, including hidden ones:

This reveals the presence of a hidden file named ...Hiding-From-You.
Display the content of the hidden file:

This command reveals the password: 2WmrDFRmJIq3IPxneAaMGhap0pFhF3NJ
Access the next level using the obtained password:
Enter the password when prompted.
Lessons Learned
Hidden files in Unix systems start with a dot
.The
ls -acommand shows all files, including hidden onesHidden files can be accessed and read like any other file
Important information may be concealed in hidden files
-- Othmane
Last updated
Was this helpful?