🧠What I Practiced/Learned/Discovered
- Play with linux shell
- Locate specific texts in a file.
🔧 Tools used
Linux shell
catgrep
Steps
- Run
cat server.logto see globally what’s in the file - Run `cat server.log | grep picoCTF{
- It returned this line
[1990-08-09 10:00:10] INFO FLAGPART: picoCTF{us3_multiple times - I supposed that each Flag part had the
INFO FLAGPART:
- It returned this line
- Run
cat server.log | grep "INFO FLAGPART"- Got every part - Assembled the part in a logical sentence way. `