B01lers_CTF(Needle_In_A_Haystack)
Oct 3-4, 2020
Challenge Description
Can you find the needle? Haystack Link: https://mega.nz/file/5qBR3a7Z#VS7Uz6l2Jr1ZXcckQQaMvzMzuljpJsrfdfOFqSIfNSs
Solution
In this challenge we have a .zip file let’s grabe it and unzip it :
bvr0n@kali:~/CTF/b01lers_bootcamp/Misc$ unzip haystack.zip
After unziping it we get a folder that have 400 .txt file inside, each file have a lot of Data, let’s try to get the flag in a smarter way :
bvr0n@kali:~/CTF/b01lers_bootcamp/Misc/NeedleInAHayStack$ strings * | grep -oE flag{.*}
flag{y0u_f0unD_Th3_n33d1e!}
best regards,