Stage 1: Scavenger Hunt
Author: 5k33tz
Description: There is a flag hidden somewhere on our website, do you think you can find it? Good luck!
Description: There is a flag hidden somewhere on our website, do you think you can find it? Good luck!
The easiest way to get the content of a site it to pull it back with wget, recursively:
Once we have all the relevant files, we can use grep to search in all of the files we pulled back. cd into icec.tf directory in your Linux box, and run the following command:
This will recursively grep through all of the files in your current directory (and sub-directories), looking for icectf{ (-i is for case-insensitive, -r is for recursively).
Doing the grep will give us one hit in a file called sponsors:
Flag = IceCTF{Y0u_c4n7_533_ME_iM_h1Din9}
Comments
Post a Comment