Plain Tools
ToolsLearnBlogCompareVerify claims

How We Verify No-Upload Claims

7 min read

A no-upload claim should be treated as a technical statement that can be tested, not a slogan. The useful question is simple: what happens on the wire during a real file operation?

In simple terms

We verify no-upload claims by running a real document job, watching the Network panel in DevTools, and checking whether the tool still works after the page is loaded and the network is removed.

Why policy language is not enough

Privacy pages can be useful, but they are still claims. If a tool says "your files are not uploaded", that statement should survive a network inspection during a real job, not just a marketing review.

We treat no-upload language as a route question: what happens when a user selects a file, runs the operation, and downloads the result?

The verification routine we actually use

We use a small repeatable checklist rather than a one-off guess. The goal is to make the route visible enough that another reviewer could repeat the same test later.

  • Load the tool normally and open the Network panel before selecting any file.
  • Run one realistic file operation rather than an empty or toy interaction.
  • Filter for fetch and XHR traffic, then inspect request size and payload behaviour.
  • Repeat the operation after the page is loaded and connectivity is removed where possible.

The exact steps are documented in How to Audit PDF Tool Network Requests.

What counts as a red flag

The obvious red flag is file data moving to a remote endpoint during the job. There are softer red flags too: opaque route switching, optional features that quietly invoke remote services, and upload-dependent fallbacks that appear only on certain file types.

  • request payloads that scale with the uploaded file
  • remote endpoints called only when the actual processing step starts
  • a workflow that stops working as soon as connectivity is removed
  • mixed local and remote routes that are hard for ordinary users to recognise

What this does and does not prove

Network testing is strong evidence, but it is not the whole compliance story. It tells you whether document bytes appear to leave the browser during the tested route. It does not replace product review, legal review, or environment-specific governance.

The practical standard is not perfection. It is whether the route is clear enough, repeatable enough, and observable enough to trust in ordinary operations.

Share this Guide

Help others discover privacy-first PDF tools

Related Reading