Files
htb-santa-ctf/crypto/MissingRaindeer/README.md
2021-12-03 16:41:55 +01:00

14 lines
285 B
Markdown

# Missing Raindeer
## Flag
HTB{w34k_3xp0n3n7_ffc896}
## How to solve
```bash
# Extract pubkey.der and secret.enc from mail.eml (secret.enc is b64 so, decode it first!)
# Then run rsactftool against it
python3 RsaCtfTool.py --publickey tmp/pub.key --uncipherfile dat/secret.enc
```