Skip to content

Latest commit

 

History

History

first-find

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Notes

Challenge: First Find

A zip file is given.

Instruction

Unzip this archive and find the file named 'uber-secret.txt' Unzip the file.

Command

unzip files.zip

Applying find command to find the file.

Command

find files -name 'uber-secret.txt'

Output

files/adequate_books/more_books/.secret/deeper_secrets/deepest_secrets/uber-secret.txt

Applying cat on the file gives the flag.

Command

cat files/adequate_books/more_books/.secret/deeper_secrets/deepest_secrets/uber-secret.txt

The flag

picoCTF{f1nd_15_f457_ab443fd1}