PDF Forensic Checker All guides Analyze a PDF
FILE FORENSICS

PDF metadata: what a file quietly remembers

Every PDF carries a memory of its own making — when, with what software, in which timezone, occasionally by whom. Reading it takes two minutes. People have lost court cases because nobody told them it was there.

Md Shariar Rahman·26 August 2026·6 min read

The date printed on a document is a claim. The dates buried in its metadata are a record. Most of the document fraud I see fails on the gap between those two — because the person typing the fake date on the page never thinks about the dates the file is writing about itself at the same moment.

What's actually in there

A PDF typically stores its metadata in two places at once, which turns out to matter enormously.

The first is the Info dictionary — the classic fields: Title, Author, Creator (the application the document was made in, like "Microsoft Word"), Producer (the software that generated the PDF itself), CreationDate and ModDate. The dates include timezone offsets, so a file knows not just when it was made but roughly where in the world the clock that stamped it was set.

The second is XMP — a richer, XML-based block that Adobe introduced later. It duplicates the basics and often adds more: a document ID that persists across edits, an instance ID that changes with each save, sometimes a whole edit history. Some workflows leave surprisingly personal traces here — usernames from the operating system, internal file paths, the name of a template.

Why two copies is a gift to investigators

Here's the beautiful part. Because the same facts live in two places, a clumsy tamperer usually edits one and forgets the other.

Metadata "scrubbing" tools and manual edits tend to reach the Info dictionary — it's the part shown in viewers' document-properties dialogs. XMP sits deeper. When the Info dictionary says one thing and the XMP block says another — different dates, different producer, different title — you're not looking at an oddity. You're looking at a file that has been made to lie about itself, and caught mid-sentence. Consistency checks between the two blocks are among the highest-value tests in document forensics precisely because ordinary software keeps them in sync and tampering breaks the sync.

One inconsistency is a question. A pattern of inconsistencies pointing the same direction is an answer.

The readings that matter most

How to read metadata yourself

You don't need special software to start. Most PDF viewers show the basics under File → Properties. For the full picture, the free command-line tool exiftool dumps everything, including the XMP block a properties dialog won't show you:

exiftool -a -G1 statement.pdf

What the manual route won't do is cross-check — compare Info against XMP field by field, validate date plausibility against the file's structural generation, and correlate the metadata story with the fonts and revision history. That's the part worth automating, and it's built into the free checker on this site as one of its eleven verification checks.

When metadata lies — in both directions

Two honest caveats, because metadata is evidence, not gospel.

Metadata can be faked. Every field is just bytes, and a skilled forger can write anything into them. That's why metadata findings gain their force in combination: faking the Info dictionary, the XMP block, the structural generation markers and the font versions consistently, all at once, is a job almost nobody gets fully right.

And clean metadata proves little on its own. A document generated fresh by a forger has perfectly ordinary, perfectly consistent metadata — it's a genuine record of a fraudulent document's creation. Metadata tells you about the file's history, not the truth of its contents. For that, as always: verify with the issuer.

READ A FILE'S MEMORY NOW

Upload any PDF to the free checker — the metadata consistency check compares the Info dictionary against XMP field by field, flags timestamp and timezone conflicts, and correlates the result with fonts and revision history. Evidence shown, nothing invented.

READ NEXTDigital signatures on PDFs: what they prove — and what they don't ALSO WORTH READINGHow to tell if a PDF was edited — seven signs that actually work