Introduction
As we delve deeper into the Bandit Challenge, Level 3 ↗️ presents us with a file containing spaces in its filename. Our mission is to locate and extract the password stored within this file, residing in the home directory.
Challenge Overview
Level 3 introduces us to the challenge of working with filenames that contain spaces. We need to identify the file called “spaces in this filename” and retrieve the password stored within.
By utilizing commands like ls
, cd
, and cat
we’ll navigate the file system, examine the file’s contents, and uncover the password.
Approach and Strategy
Follow these steps to successfully solve Level 3:
Enter the password you obtained from the previous level.
Once logged in, execute the following command to view the files in the home directory, including file permissions and ownership.:
In the list, you will find the file named "spaces in this filename"
. To view its contents, use the cat
command:
Note: Enclosing the filename in quotes allows the system to interpret the spaces correctly.
Another way of accessing the file with spaces is to escape the spaces with a backslash:
Choose whichever method you prefer to access the file.
The password for Level 3 will be displayed in the output. Take note of it for the next level.
Lessons Learned
Level 3 taught us the importance of handling spaces in filenames correctly. By enclosing the filename in quotes or using bashslashes, we successfully accessed the file and retrieved the password.
Notes
- When working with filenames containing spaces, enclose the filename in quotes to ensure proper interpretation.
- Alternatively, escape the spaces with a backslash to access the file.
Conclusion
Congratulations on completing Level 3 of the Bandit Challenge! We skillfully navigated the file system and successfully accessed the file with spaces in its filename.
Stay tuned for the next blog post, where we’ll embark on Level 4 and face new challenges in our quest for cybersecurity expertise.