13 lines
337 B
Markdown
13 lines
337 B
Markdown
|
## Difficulty
|
||
|
Easy
|
||
|
20 punten
|
||
|
|
||
|
## How to solve
|
||
|
The binary is a simple program that prints some strings (try it). It is quite large since it was compiled from Go, and Go builds very fat binaries. The easiest way to solve it is using strings and grep:
|
||
|
```bash
|
||
|
strings cynal_go | grep "IGCTF"
|
||
|
```
|
||
|
|
||
|
## Flag
|
||
|
IGCTF{AcHtErHeTpApIeRz1TeEnVrI3nD}
|