CTF After Dark - File - Get a Grep
Contents
get a grep
task
It appears as though someone had quite the field day with bash commands and made this file of random stuff, i wonder if there is a way to extract any useful information from it?
Author: james
Tags: file
writeup
Let’s grab this file !
|
|
By using the strings
utility to print out any printable characters I see a lot of useless random characters.
However since the challenge is called get a grep I can try to use grep to find any useful information by searching for the flag using Global Regular Expression (grep):
|
|
I assume the correct flag is: flag{grep_mastermind}
And that is indeed the correct flag.