Skip to main content

Riddle Registry picoMini by CMU-Africa Solution

Navigate a Windows Registry hive, following a trail of clues across keys and values to find the hidden flag.

Published: April 2, 2026Updated: August 13, 2026

Description

A PDF file hides the flag in its metadata. Find it.

Download the PDF file from the challenge page.

Install exiftool: sudo apt install libimage-exiftool-perl

bash
sudo apt install libimage-exiftool-perl

Solution

Want to try it yourself first?

The guided walkthrough reveals hints one step at a time.

Walk me through it
  1. Step 1Read all PDF metadata with exiftool
    Observation
    The description says the flag is in the PDF's metadata rather than its visible content. exiftool surfaces fields like Author, Title, and Keywords that a normal PDF viewer never renders.
    Run exiftool on the PDF to display every metadata field. Look at the Author, Title, Subject, Keywords, and Creator fields for anything unusual.
    bash
    exiftool riddle.pdf
    What didn't work first

    Tried: Open the PDF in a viewer and search the visible text for the flag.

    The flag is stored in metadata fields that are never rendered on any page. A PDF reader displays only the page content stream, not the Document Information Dictionary or XMP stream. exiftool is required to surface those hidden fields.

    Tried: Run strings on the PDF instead of exiftool to look for the flag.

    strings prints printable sequences from the raw binary and will show XMP metadata when it happens to be plain text, but it dumps thousands of unformatted lines and can truncate or misalign multi-line fields. exiftool parses the PDF structure and labels every field, which makes the anomalous value easy to spot without grepping through noise.

    Learn more

    PDF metadata is stored in two locations within a PDF file: the older Document Information Dictionary (fields like Author, Title, Subject, Keywords, Creator, Producer, CreationDate) and the newer XMP (Extensible Metadata Platform) stream, which stores the same and additional fields as embedded XML. exiftool reads both and displays them together.

    These fields are set by the application that created the PDF (Word, Adobe Acrobat, LibreOffice, LaTeX, etc.) and can be edited freely by the document owner. They are not visible in the rendered document - a reader would never see them while reading the PDF's pages. This makes them an effective hiding spot for data that shouldn't appear in the visible content.

    In real-world digital forensics, PDF metadata is valuable evidence: author names, organization names, creation timestamps, and editing software versions can identify who created a document and when. Leaked documents have been traced back to their source by author metadata. Tools like pdfinfo (from poppler-utils) and pdf-parser.py from Didier Stevens provide additional views into PDF structure.

  2. Step 2Decode the base64 value
    Observation
    One of the metadata fields holds an alphanumeric blob that looks nothing like an author name or a title. That reads as base64, so base64 -d should reveal the flag.
    Find a metadata field containing a base64-encoded string. Decode it with the base64 command to reveal the flag.
    bash
    echo '<base64_value_from_metadata>' | base64 -d
    What didn't work first

    Tried: Pipe the entire exiftool output directly into base64 -d without extracting the specific field value first.

    base64 -d fails or returns garbage, because the exiftool output carries field labels, colons, whitespace, and newlines that are not part of the payload. Only the alphanumeric blob itself is valid base64, so extract it cleanly first, with something like exiftool -FieldName -b riddle.pdf.

    Tried: Try base64 --decode with the -i flag to ignore non-base64 characters, expecting it to silently strip the surrounding exiftool formatting.

    The -i flag makes base64 skip invalid characters, so you get output with no error, but the result is meaningless binary: the field labels and spacing corrupt the stream at unpredictable positions and the flag never appears. Isolate the encoded value before decoding.

    Learn more

    Metadata fields in PDFs (and other file formats) can hold arbitrary text strings - their content is never validated by the format specification. A base64-encoded value stored in a metadata field provides a layer of obfuscation: the raw field value looks like random alphanumeric characters to a casual viewer, but decodes to meaningful data instantly with standard tools.

    echo '...' | base64 -d pipes the string to base64's decode mode. The output goes to stdout, which can be further piped or redirected. If the decoded output is binary (an image, a compressed file), redirect it to a file: echo '...' | base64 -d > output.bin, then run file output.bin to determine what it is.

    This two-layer approach (metadata hiding + base64 encoding) combines two independent techniques: hiding data where most tools won't look, and obfuscating it so it doesn't look suspicious at first glance. In CTF forensics, always run exiftool first (metadata), then strings (printable sequences), then binwalk (embedded files) on any given file before attempting more complex analysis.

Flag

Reveal flag

picoCTF{puzzl3d_m3tadata_f0und!_...}

Flag prefix verified: base64 in PDF Author field decodes to picoCTF{puzzl3d_m3tadata_f0und!_...}. Hash suffix varies per instance (observed: c2073669, 0e2de5a1). Confirmed by manual base64 decode.

Key takeaway

PDF, JPEG, and Office documents all carry metadata fields separate from their visible content. Those fields accept arbitrary strings and stay invisible to normal viewers, which makes them a natural hiding place. In forensics, metadata is often the first thing examined, because it can reveal authorship, editing history, software versions, and GPS coordinates without opening the file. Layering base64 on top adds obfuscation but no security, since both steps reverse with standard tools.

Related reading

Useful tools for Forensics

Where to go next