Tags: re strings
Rating:
### Say My Name (Reversing) - CTF@CIT 2026
We’re given a statically linked 64-bit ELF binary named `saymyname` that is not stripped.
#### Solution
Getting the flag for this challenge was straightforward. I simply ran the `strings` command on the binary and piped the output to `grep`, filtering based on the known flag format:
```bash
$ strings saymyname | grep "CIT"
yeah that me. heres your flag CIT{Zn583Umnwd4S}
```