Jump to section
  1. Introduction
  2. Why Plain Screenshots Are a Problem (Even If Judges Sometimes Admit Them)
  3. What Courts Actually Require: Authentication Under FRE 901 and 902
  4. The Four Elements of a Defensible Web Capture
  5. A Practical Workflow for Paralegals
  6. Choosing Tools: Honest Comparison
  7. When Social Media Deserves Special Care

How to Capture Legally Admissible Website Evidence: A Paralegal's Guide

Chain of custody, hash verification, and the difference between a screenshot and admissible evidence.

12 min read Updated April 2026

Introduction

It’s Thursday afternoon. A partner drops a Slack message: “The defendant’s Instagram post about the accident — we need it preserved before they delete it. Can you grab that today?” You open the profile, hit Command-Shift-4, paste the PNG into a Word doc, and email it over. Done in five minutes.

Six months later, in deposition, opposing counsel asks: “How do you know this screenshot accurately reflects what was on the site that day? Was the content edited between your capture and today? Can you prove the URL wasn’t spoofed? Who had access to the file between then and now?” Your screenshot — the only record you have — can’t answer any of those questions.

This is the central problem with website evidence. A plain screenshot is a picture of a browser window, nothing more. It carries no cryptographic proof of integrity, no reliable timestamp, no chain of custody. Courts don’t automatically reject them, but they’re soft targets for authentication challenges. This guide walks paralegals through what courts actually require, the Federal Rules that govern screenshot legal evidence, and the tooling choices that determine whether your capture survives a motion in limine or collapses under cross-examination.

Why Plain Screenshots Are a Problem (Even If Judges Sometimes Admit Them)

A question that comes up constantly: are screenshots admissible in court? The honest answer is “sometimes, with caveats.” US federal courts have admitted plain screenshots when the opposing party didn’t seriously contest them, or when a witness with personal knowledge testified that the image fairly and accurately reflected what they saw. But that’s a thin foundation. The moment authenticity is genuinely disputed, an unadorned screenshot exposes three weaknesses:

No integrity proof. Screenshots are PNG or JPEG files like any other. Photoshop exists. DevTools exists. There is no technical way to tell, looking at a bare image, whether the text shown was actually rendered by the live website or pasted in afterwards. Opposing counsel knows this.

Unreliable timestamps. The file’s creation date comes from the operating system of whoever captured it — trivially modifiable. Screenshots taken on Tuesday can be made to look like they were taken last year. Courts increasingly expect an independent, verifiable timestamp, not an OS metadata field.

Thin chain of custody. If the screenshot was emailed around, saved to Dropbox, renamed, and then produced in discovery, the provenance trail is muddled. For chain of custody digital evidence to hold up, you need to show who handled the file, when, and that it wasn’t altered along the way — which is almost impossible with a bare PNG that lived in someone’s Downloads folder.

The underlying problem is that screenshots were designed as a user-interface convenience, not as a forensic record. Using them as evidence is like using a photocopy of a photocopy as a signed original — it might pass without objection, but you shouldn’t count on it.

What Courts Actually Require: Authentication Under FRE 901 and 902

In US federal practice, how to authenticate online evidence comes down to two rules.

Federal Rules of Evidence 901 sets the basic authentication standard: to admit an item of evidence, the proponent must produce “evidence sufficient to support a finding that the item is what the proponent claims it is.” For website evidence, this traditionally means a witness with personal knowledge testifying that they visited the URL, saw the content, and that the exhibit fairly and accurately reflects what they saw. That’s the classic 901(b)(1) route.

Federal Rules of Evidence 902(13) and 902(14) — added December 1, 2017 — changed the landscape significantly. They allow certain electronic evidence to be self-authenticating through written certification by a qualified person, eliminating the need for live testimony at trial.

Rule 902(13): Records Generated by an Electronic Process

Rule 902(13) covers records “generated by an electronic process or system that produces an accurate result.” Per the Advisory Committee notes and the US Courts’ commentary, this includes the contents of a website captured by an automated process. The proponent submits a certification from a qualified person describing the capture process, and the record becomes self-authenticating — subject to the opposing party’s right to challenge.

Rule 902(14): Data Copied from an Electronic Device or File

Rule 902(14) addresses data copied from an electronic device, storage medium, or file, “if authenticated by a process of digital identification.” The Advisory Committee explicitly identifies hash value comparison (SHA-256, for instance) as an acceptable digital identification process. This is the rule most directly on point when you capture an HTML archive of a website and hash it.

Both rules require compliance with the certification procedure from Rule 902(11), which includes a notice requirement: you must give the adverse party reasonable written notice of your intent to rely on the certification before trial.

A caveat worth flagging: authentication is not admissibility. Even after you clear 901 or 902, hearsay objections apply independently. The Advisory Committee notes for Rule 902(13) specifically state that it’s “solely limited to authentication, and any attempt to satisfy a hearsay exception must be made independently.” A properly authenticated screenshot of a defamatory Facebook post still needs a hearsay route — a party admission, a state of mind exception, or whatever fits — before the content comes in for its truth. Paralegals shouldn’t conflate the two. (I’d suggest confirming the exact citation and hearsay route with the supervising attorney for any specific case; this article is general guidance, not legal advice.)

State Courts and Non-US Jurisdictions

State rules generally mirror the federal framework but vary in adoption timing and wording. Most state evidence codes modeled on the federal rules have similar authentication requirements, but you should check the specific jurisdiction. Outside the US, the UK and EU operate under different frameworks — the EU’s eIDAS Regulation (910/2014) provides a legal presumption of integrity for qualified electronic timestamps, which is useful when evidence might cross Atlantic borders. I’d recommend confirming jurisdictional specifics with the attorney of record before relying on this summary.

The Four Elements of a Defensible Web Capture

Whatever tool you use, a web page snapshot with timestamp that will hold up in court needs to carry four elements. Think of these as the non-negotiables.

1. Complete URL and Page Context

The exact URL has to be captured as part of the record — not pasted in later. This matters because URLs can be spoofed and because partial URLs (/profile/12345) are meaningless without the domain. The capture should also include the full page, not a cropped viewport. A screenshot showing only part of an Instagram post omits surrounding context — replies, timestamps, account verification badges — that can matter enormously.

2. A Trustworthy Timestamp

The timestamp needs to come from something other than the capturing workstation’s system clock. Options range from internal server timestamps synced to NTP atomic clock sources (adequate for most purposes) to RFC 3161 qualified electronic timestamps (stronger) to blockchain-anchored timestamps (used by some tools, though courts’ familiarity varies). For most paralegal work, a reliable server-side timestamp from a tool with documented processes is sufficient. The point is that the timestamp is independent of the person doing the capture.

3. Hash Verification

A SHA-256 hash of the captured file is the mechanism that proves the file hasn’t changed since capture. You compute the hash at the moment of capture, record it in a certification or manifest, and anyone — including opposing counsel — can recompute the hash later to verify integrity. Hash verification website capture is the technical backbone of Rule 902(14) self-authentication.

If even one byte of the file changes, the hash changes completely. This is why hash verification is so useful: it makes tampering mathematically detectable. For paralegals, the practical takeaway is that your capture tool should output the hash automatically and store it alongside the file.

4. Documented Chain of Custody

Chain of custody for a web capture means documenting who captured the evidence, when, from what workstation, and every subsequent handler. For digital evidence this usually takes the form of an audit log: capture event, export event, transfer events, with timestamps and actor IDs. Some tools generate this automatically; others leave it to you.

A workable minimum chain of custody record includes the capturing user, the URL, the capture timestamp, the hash of the resulting file, the tool/version used, and every subsequent transfer or export with corresponding timestamps.

A Practical Workflow for Paralegals

Here’s a step-by-step workflow to preserve website evidence in a way that survives an authentication challenge. Adapt it to your firm’s tools and matter specifics.

Step 1: Act Fast, but Think First

When you get the request, resist the urge to immediately start clicking. Take sixty seconds to note: what exact URL(s) are relevant, whether the content is likely to change or be deleted (social media: yes; static corporate page: probably not), whether you need the visible state only or also the underlying HTML, and whether dynamic elements (videos, expanding comment threads, infinite scroll) matter for the case.

Step 2: Capture Using a Forensic Tool, Not a Screenshot Key

Use a dedicated web capture tool that produces, at minimum, a full-page capture, the URL, a reliable timestamp, and a SHA-256 hash. Options range across a wide price spectrum — covered in the comparison section below. Avoid the built-in OS screenshot unless you have no alternative. If you genuinely have no alternative (the content is disappearing right now), capture with OS screenshot plus a second device recording the capture process (phone camera filming the screen), and document everything you did in a contemporaneous memo — then re-capture with a proper tool as soon as possible.

Step 3: Capture the HTML, Not Just the Image

Where possible, save the HTML source alongside the visual capture. The HTML contains metadata that’s often evidentially important: post IDs, timestamps embedded in the page structure, author identifiers, edit history indicators on platforms that expose them. A visual-only capture discards all of that.

Step 4: Generate and Record the Hash Immediately

The SHA-256 hash should be recorded in your case management system the same day as the capture. Don’t leave it on a technician’s workstation or in a single tool’s dashboard. If your capture tool produces a hash manifest file, archive it with the capture itself.

Step 5: Create a Contemporaneous Memo

Write a short memo the same day describing: who you are, what you captured, the URL(s), the time of capture, the tool used, and any notable observations (e.g., “the post had 47 likes and 12 comments at time of capture”). This memo becomes part of the chain of custody and is the foundation for any later 902(13) certification a qualified person will sign.

Step 6: Store Immutably

Capture files should go into a location with access logging and without edit capability by default. A write-once folder on your document management system works. Avoid storing the canonical copy in a personal Dropbox or email attachment.

Step 7: Flag for Certification

If the matter is headed to trial or hearing, flag captured evidence early for the qualified person who will sign the 902(13) or 902(14) certification. For smaller firms, this might be your IT vendor or an e-discovery consultant; for larger firms, likely an internal forensic specialist. Don’t leave certification planning until the eve of trial.

Choosing Tools: Honest Comparison

The market for tools to preserve website evidence is fragmented, and vendor marketing makes them all sound equivalent. They aren’t. Here’s an honest look at the main options, based on publicly available information — you should validate current features and pricing directly with the vendor for any matter-critical decision.

Pagefreezer (with WebPreserver browser extension)

Pagefreezer sits at the enterprise end. It’s oriented toward continuous archiving and compliance use cases — think regulated financial firms archiving social media under FINRA rules — but it’s also used by litigation teams for evidence capture. It produces timestamped captures with SHA-256 hashes and generates collection reports designed for court use. Public sources describe SOC 2 and ISO 27001 certifications for its infrastructure. Pricing is enterprise-negotiated; published mentions range around $229/month and up, though figures in third-party roundups vary and I’d recommend verifying directly. Best for firms that need continuous monitoring of defined targets, not occasional ad-hoc captures.

Page Vault

Page Vault is explicitly marketed to the legal industry and produces captures with affidavits, SHA-256 hashes, and timestamps. It’s often cited as a go-to for attorneys who need a clean defensible capture with minimal setup. Pricing structures reported in third-party sources include per-capture fees in the roughly $149–$299 range, though I’d confirm current pricing with Page Vault directly. Strength: purpose-built for litigation. Weakness: per-capture costs add up for high-volume work.

Stillio

Stillio is a scheduled-screenshot tool. You point it at URLs, it captures them at a cadence you specify (daily, hourly, etc.). It’s useful for monitoring websites over time — catching a competitor’s claims, documenting website changes — but it’s not marketed specifically as a legal evidence tool. Its captures are visual; authentication features are lighter than Pagefreezer or Page Vault. Good for ongoing monitoring where you don’t know in advance which moment will matter; less suited as your primary tool for discrete evidentiary captures.

Perma.cc

Perma.cc is a project of the Harvard Library Innovation Lab, developed for academic and legal citation preservation. It creates permanent links for cited sources, addressing the link-rot problem in academic writing and court opinions. Courts and academic libraries can use it free as registrars; others pay a subscription. It’s a citation tool first, not a forensic capture tool — its captures lack the chain-of-custody apparatus of Pagefreezer or Page Vault. Excellent for preserving sources cited in briefs; limited as primary evidence infrastructure.

Captureze

Captureze is a newer option positioned specifically around tamper-evident capture. Each screenshot ships with a Certificate of Capture — a PDF containing a SHA-256 hash of the image, a UTC timestamp, a unique Certificate ID, HTTP status, viewport dimensions, geolocation of the capture node, capture engine version, and the storage region. A public verification endpoint at captureze.com/verify lets anyone — including opposing counsel — recompute the hash against the original file and confirm integrity. Infrastructure is EU-hosted, which matters for matters with GDPR touchpoints or cross-border considerations. Pricing sits well below enterprise tiers (Starter at $19/month, Pro at $49, Business at $149), which makes it accessible for smaller firms and ad-hoc matters that don’t justify a Pagefreezer contract. It’s a reasonable fit for paralegals who want the authentication elements courts increasingly expect — hash, timestamp, verification path — without a per-capture enterprise fee structure.

What About Free Tools?

The Wayback Machine (archive.org) and archive.today can preserve publicly accessible pages, and their archives have been cited in court. But they’re not under your control — you can’t guarantee a capture will happen at the moment you need it, some sites block them, and you don’t produce the capture yourself, which complicates the “qualified person” requirement of Rule 902(13). Useful as supplementary evidence, not as primary capture infrastructure.

When Social Media Deserves Special Care

Social media evidence is where plain screenshots get into the most trouble, because the content is volatile. A tweet can be deleted or edited. An Instagram post can be archived. A Facebook profile can be locked down. What’s visible to the public on Monday may be invisible on Tuesday.

Three specific things to be careful about with social media:

Platform-native metadata matters. Post IDs, timestamps in the HTML, verification badges, and engagement counts are all part of what makes a post identifiable. A visual crop that loses the surrounding page chrome loses this context. Capture the full page and the HTML.

Logged-in vs. logged-out views differ. If you capture while logged in as yourself, the page may show engagement personalized to you (suggested posts, etc.). Logged-out captures are usually cleaner evidentiary records, though they may show less content on some platforms. Document which you used.

Deletions and edits happen between capture and trial. If you capture a Facebook post and the user deletes it two days later, your capture is now the only record. Make sure the capture is defensible on its own — because you can no longer visit the live page to verify anything about it.

For active litigation where social media evidence is central, consider a tool that supports continuous monitoring so that edits and deletions are captured automatically. Pagefreezer’s continuous-archiving model is strongest at the enterprise end. Captureze covers the same use case for scheduled monitoring of specific URLs at a lower price point, with each scheduled capture generating its own Certificate of Capture.

Frequently Asked Questions

Are screenshots admissible in court?

Plain screenshots can be admitted, particularly when uncontested or supported by witness testimony. But they are vulnerable to authentication challenges under FRE 901. For contested matters, you want a capture that includes a verifiable timestamp, hash verification, and documented chain of custody — ideally positioned for self-authentication under FRE 902(13) or 902(14).

What's the difference between FRE 902(13) and 902(14)?

Rule 902(13) covers records generated by an electronic process or system — like the output of a website capture tool. Rule 902(14) covers data copied from an electronic device or file, authenticated through a digital identification process such as SHA-256 hash comparison. For a website screenshot with an accompanying hash manifest, proponents sometimes proceed under 902(13), sometimes 902(14), and sometimes both.

Do I need an expert witness to get a web capture into evidence?

Before the 2017 amendments to FRE 902, typically yes. After the amendments, a written certification from a qualified person can substitute at trial. That said, the opposing party retains the right to challenge authenticity, and if they do, live testimony may still be needed.

How long should I keep captured website evidence?

At minimum, through the full litigation lifecycle plus the firm's retention policy and any applicable holds. Always store the original hash-verified capture; it can be re-verified against its hash at any time to demonstrate integrity.

Can I capture a password-protected or private page?

Technically yes, but it is a separate conversation with the attorney. Capturing content behind a login requires account credentials, and capturing an opposing party's private content without authorization can create Stored Communications Act and Computer Fraud and Abuse Act issues.

Capture Website Evidence With Captureze

Automated scheduled screenshots with SHA-256 hashes and downloadable Certificates of Capture. No credit card required.

Last updated: April 2026