Level 1 → 2
Last updated
Last updated
The password for the next level is stored in a file called - located in the home directory.
Verify the file's presence in the home directory:
This confirms the existence of a file named -.
Display the content of the file:
Note: Use ./
to prefix the filename because cat
interprets - as a synonym for the standard input (stdin) when used alone.
The revealed password is: 263JGJPfgU6LtdEvgfWU1XP5yac29mFx
Access the next level using the obtained password:
Enter the password when prompted.
Special characters in filenames can affect how commands interpret them
The dash (-) is often used to represent stdin/stdout in Unix systems
Using ./
before a filename tells the system to treat it as a file path
Understanding how commands interpret arguments is crucial for handling unusual filenames
-- Othmane