picoCTF2019 Bases [General Skills]
What does this bDNhcm5fdGgzX3IwcDM1 mean? I think it has something to do with bases.
(適当な訳)bDNhcm5fdGgzX3IwcDM1とはどういう意味でしょう?baseが関係あると思います。
Hints: Submit your answer in our competition's flag format. For example, if you answer was 'hello', you would submit 'picoCTF{hello}' as the flag.
(適当な訳)コンペのフラグフォーマットで提出してください。例えば、「hello」が答えなら、フラグは「picoCTF{hello}」となります。
問題文にあるように、Baseでデコードすればよい。Base16, 32, 64, 85などがあるが、最もよく使われているであろうBase64でデコードするとフラグが得られる。
$ python3
>>> import base64
>>> print(base64.b64decode("bDNhcm5fdGgzX3IwcDM1"))
b'l3arn_th3_r0p35'
答え:picoCTF{l3arn_th3_r0p35}