14 lines
285 B
Markdown
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
|
|
```
|