はまやんはまやんはまやん

hamayanhamayan's blog

Magikarp Ground Mission [picoCTF 2021]

SSH接続する

以下コマンドを使いながらフラグを集めていくと、最終的なフラグが手に入る。
- ls: ディレクトリに含まれるファイル・フォルダの列挙
- cat: 指定ファイルの中身を出力
- cd: 指定ディレクトリへ移動

ctf-player@pico-chall$ ls  
1of3.flag.txt  instructions-to-2of3.txt  
ctf-player@pico-chall$ cat 1of3.flag.txt  
picoCTF{xxx  
  
ctf-player@pico-chall$ cat instructions-to-2of3.txt  
Next, go to the root of all things, more succinctly `/`  
  
ctf-player@pico-chall$ cd /  
ctf-player@pico-chall$ ls  
2of3.flag.txt  bin  boot  dev  etc  home  instructions-to-3of3.txt  lib  lib64 media  mnt  opt  proc  root  run  sbin                                            srv  sys  tmp  usr  var  
ctf-player@pico-chall$ cat 2of3.flag.txt   
xxxxxxxxxxxxx  
  
ctf-player@pico-chall$ cat instructions-to-3of3.txt   
Lastly, ctf-player, go home... more succinctly `~`  
  
ctf-player@pico-chall$ cd ~  
ctf-player@pico-chall$ ls  
3of3.flag.txt  drop-in   
ctf-player@pico-chall$ cat 3of3.flag.txt   
xxxxxxxx}  
``