FirstFind

Description

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

Download zip file
https://artifacts.picoctf.net/c/502/files.zip

Solving

After extracting i found many files to search in

$ tree .                                                                                    
.
β”œβ”€β”€ 13771.txt.utf-8
β”œβ”€β”€ 14789.txt.utf-8
β”œβ”€β”€ acceptable_books
β”‚Β Β  β”œβ”€β”€ 17879.txt.utf-8
β”‚Β Β  β”œβ”€β”€ 17880.txt.utf-8
β”‚Β Β  └── more_books
β”‚Β Β      └── 40723.txt.utf-8
β”œβ”€β”€ adequate_books
β”‚Β Β  β”œβ”€β”€ 44578.txt.utf-8
β”‚Β Β  β”œβ”€β”€ 46804-0.txt
β”‚Β Β  └── more_books
β”‚Β Β      β”œβ”€β”€ 1023.txt.utf-8
β”‚Β Β      └── .secret
β”‚Β Β          └── deeper_secrets
β”‚Β Β              └── deepest_secrets
β”‚Β Β                  └── uber-secret.txt
└── satisfactory_books
    β”œβ”€β”€ 16021.txt.utf-8
    β”œβ”€β”€ 23765.txt.utf-8
    └── more_books
        └── 37121.txt.utf-8

10 directories, 12 files

So i used grep -r

$ grep -r picoCTF{
adequate_books/more_books/.secret/deeper_secrets/deepest_secrets/uber-secret.txt:picoCTF{f1nd_15_f457_ab443fd1}

FLAG

picoCTF{f1nd_15_f457_ab443fd1}

Last updated