picoCTF2019 First Grep [General Skills]
Can you find the flag in file? This would be really tedious to look through manually, something tells me there is a better way. You can also find the file in /problems/first-grep_3_2e09f586a51352180a37e25913f5e5d9 on the shell server.
(適当な訳)fileからフラグを見つけられますか?手作業で探すには本当に面倒です。何か良い手があるはずです。シェルサーバの/problems/first-grep_3_2e09f586a51352180a37e25913f5e5d9でもファイルを確認できます。
Hints: grep tutorial
fileの中身は適当な文字がいっぱい並んでいる。単純な検索でも見つかると思うが、趣旨に従ってgrepを使用する。ちなみにwcで調べると、6行、315単語、14551バイトであることがわかる。
$ grep pico file
picoCTF{grep_is_good_to_find_things_eda8911c}
$wc file
6 315 14551 file
答え:picoCTF{grep_is_good_to_find_things_eda8911c}