PieceByPiece

less than 1 minute read

📦 Piece by Piece

Category Author
📦 Miscellaneous Yahaya Meddy

Challenge Prompt

After logging in, you will find multiple file parts in your home directory. These parts need to be combined and extracted to reveal the flag.

Problem Type

  • Zip File

Solve

We are told we need to SSH into the machine, so we start with that. 2026-03-22_13-25-06

Check the folder and see we have instructions.txt and part_aa through part_ae. 2026-03-22_13-25-19

The instructions:

  • 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.

So, let’s combine all the files together into part_aa by appending them to the end in order. 2026-03-22_13-26-15

Then we can rename the file to flag.zip.
2026-03-22_13-26-37

Then unzip the file, using supersecret as the password:
2026-03-22_13-27-27

And finally open the file to get the flag!
2026-03-22_13-27-41