picoCTF2019 Lets Warm Up [General Skills]

If I told you a word started with 0x70 in hexadecimal, what would it start with in ASCII?
(適当な訳)16進数で0x70で始まる単語を話した場合、ASCIIでは何で始まるでしょう?
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}」となります。

0x70をASCIIで答えるだけの問題。16進とASCIIの対応は探せばすぐに見つかる(例えばここ)。せっかくなのでPythonでもやってみる。

% python3
>>> chr(0x70)
'p'

答え:picoCTF{p}

picoCTF write-upまとめ

この記事が気に入ったらサポートをしてみませんか?