magnifying-glassFirst Find

Download that archive:

curl https://artifacts.picoctf.net/c/500/files.zip -o files.zip
ls

Unzip it:

Here is the uber_secret.txt, lets read it:

Here is the flag.

Another way to find the file after unzipping it:

  • find: To find things within Linux systems.

  • .: To search recursively from the current directory.

  • -name: To specify the filename.

  • 2>/dev/null: To redirect errors to /dev/null.

Last updated