18 lines
634 B
Plaintext
18 lines
634 B
Plaintext
ctf-player@pico-chall$ ls
|
|
instructions.txt part_aa part_ab part_ac part_ad part_ae
|
|
ctf-player@pico-chall$ cat instructions.txt
|
|
Hint:
|
|
|
|
- The flag is split into multiple parts as a zipped file.
|
|
- Use Linux commands to combine the parts into one file.
|
|
- The zip file is password protected. Use this "supersecret" password to extract the zip file.
|
|
- After unzipping, check the extracted text file for the flag.
|
|
|
|
|
|
ctf-player@pico-chall$ cat part* > full.zip
|
|
ctf-player@pico-chall$ unzip -P supersecret full.zip
|
|
Archive: full.zip
|
|
extracting: flag.txt
|
|
ctf-player@pico-chall$ cat flag.txt
|
|
picoCTF{z1p_and_spl1t_f1l3s_4r3_fun_574adc66}
|