テキストファイル digital_ask.csv
が与えられた。
このファイルの内容を見ると、小数点を含む数 time
と、0か1の signal
のデータが並んでいるようだった。
そこで、time
はとりあえず無視し、signal
のデータだけを抽出した。
すると、0や1が16個ずつ並んでいるようだったので、それぞれ1個ずつにまとめた。
これに対して From Binary をかけることで、flagが得られた。
A text file digital_ask.csv
was given.
Checking what's in the file, there were lines of a decimal number time
and a 0/1 character signal
.
I ignored time
to begin with, and extracted only signal
using
The result looked like 16 0s or 1s are used as an unit, so I replaced them to one 0 or 1.
I obtained the flag by applying "From Binary" to the result.
Find / Replace, 6 more - CyberChef