Level 1 - Find password in file named readme (Misc)
Description
The goal of this level is to get the password for the next level stored in a file called readme
Tech used
- cat
- find
- [ls]
Solutions
Run ssh bandit0@bandit.labs.overthewire.org -p 2220. Password is bandit0
- Find
readme& print output- Run
find . -name readme -exec cat {} ';'
- Run
- List directory & print output
- Run
lsto check ifreadmeis present - Run
cat readme
- Run