Tags: base64 crypto 

Rating:

### Nintendo base 64

#### Problem

- Given the output.txt file, get the flag

#### Solution

- First remove whitespace from each line and join the chars
- Next, go on decoding it using base64 decoder
- After around 8 times, you will get the flag directly.
- Flag : 'CHTB{3nc0d1ng_n0t_3qu4l_t0_3ncrypt10n}'

Original writeup (https://github.com/rudradesai200/CTFs/tree/master/CyberApocalypse2021/crypto_nintendo_base64).