Challenge Author: LT ‘SYREAL’ JONES
Category: General Skills
Difficulty: Easy
Description
Unzip this archive and find the file names ‘uber-secret.txt’
Process / Notes
wgetandunzip- Saw the file briefly in the unzip
- Tried to grep it, but wasn’t successful even with a recursive grep
- Sounds like the
findcommand is the way to go find 'uber-secret.txt'- Wait! I need to add the
-nameoption –>find -name 'uber-secret.txt' - Got the file path to the file
cat <file/path/uber-secret.txt>recealed the flag
5 minutes 30 seconds to complete
Hints
None
Core Lessons
- Understand how to locate a file with the
find -name <file-name>command - Understand how to work with the file once you’ve found it