ファイル dna1.txt
が与えられた。
dna1.txt
の先頭のデータ TGGC
と、flagの先頭と予想される k
のASCIIコードの2進数表現 01101011
を見比べると、
T
が 01
に、G
が 10
に、C
が 11
に対応しそうに見えた。
そう仮定すると、残った A
は 00
に対応すると予想できる。
dna1.txt
の内容に対してこの変換を行い、From Binary をかけることで、flagが得られた。
A file dna1.txt
was given.
Comparing TGGC
, which is the first part of dna1.txt
, and 01101011
, which is the binary representation of the ASCII code of k
, which I guessed as the first part of the flag,
it looked like T
corresponds to 01
, G
corresponds to 10
, and C
corresponds to 11
.
Assuming this, the remainder A
should correspond to 00
.
I obtained the flag by applying this conversion to dna1.txt
and then applying "From Binary" on
Find / Replace, 4 more - CyberChef