ブラウザ上でLinuxターミナルが使えるサービスのURLが与えられた。
アクセスすると、まずCTFのユーザ名とパスワードを入力することが求められた。
使っているパスワード管理ソフトからの入力は受け付けられなかったため、手作業で入力した。
すると、コマンドが入力できる状態になった。
ls
コマンドを実行すると、ファイルwelcome.txt
があることがわかった。
base64 welcome.txt
コマンドを実行し、出力をCtrl+Cでコピーし、welcome.txt
を取り出すことができた。
welcome.txt
の中にflagが書かれていた。
An URL of a service where we can use a Linux terminal on a Web browser was given.
Accessing to the URL, I was asked to enter the user name and password for the CTF.
Input from password-mamaging software I used was not accepted, so I entered them by hand.
After that, the service started accepting commands.
Executing ls
command revealed that there is a file welcome.txt
.
I taked the file welcome.txt
out by executing a command base64 welcome.txt
,
copying its output via Ctrl+C, and applying "From Base64" in
The flag was in the file welcome.txt
.