Skip to content

Latest commit

 

History

History
 
 

Nothing

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Nothing:Misc:120pts

あなたは友人のプログラマーからあるテキストファイルを渡されました。中身を確認しますが画面には何も表示されません。何も書かれていないのか、いや、よく見ると、、、
添付されたファイルを解析してフラグを得てください。
nothing_b044a7483b5fa221f1ab0326ce97e81f05189621.zip

Solution

メモ帳で開くと空白だった。
xxdするとスペースとタブが含まれていた。

$ xxd nothing.txt
00000000: 2020 2020 0920 2020 0909 200a 090a 2020      .   .. ...
00000010: 2020 2020 0920 2009 0920 200a 090a 2020      .  ..  ...
00000020: 2020 2020 0920 2020 2020 090a 090a 2020      .     ....
00000030: 2020 2020 0920 2020 0909 090a 090a 2020      .   ......
00000040: 2020 2020 2009 2020 2020 200a 090a 2020       .     ...
~~~

ホワイトスペースなのでWhitespace Interpreterで実行すると以下の文字列が現れた。

FLAG is flag{And_Then_There_Were_None}

flag{And_Then_There_Were_None}