Level 7 → 8
Level Goal
The password for the next level is stored in the file data.txt next to the word millionth
Write-Up
List the content of the current directory:
ls

This confirms the presence of the data.txt file.
Display the content of data.txt:
cat data.txt

This file contains a large amount of text, making manual search impractical.
Search for the line containing 'millionth' in data.txt:
grep millionth data.txt

grep
: Command for searching text using patternsmillionth
: The pattern I'm searching fordata.txt
: The file we're searching in
The password retrieved: dfwvzFQi4mU0wfNbFOe9RoWskMLg7eEc
Access the next level:
ssh [email protected] -p 2220
Enter the password when prompted.
Lessons Learned
Viewing file contents with
cat
helps understand the data structuregrep
is efficient for finding specific lines in large filesThe password isn't always hidden - sometimes it's just mixed with other data
-- Othmane
Last updated
Was this helpful?