DEV Community

hwlsniper
hwlsniper

Posted on

I Checked 10 Online PDF Tools — 9 of Them Upload Your Files

I spent an afternoon reading the privacy policies of 10 popular online PDF tools. Here's what I found.

The Test

For each top PDF tool from Google search, I checked:

  1. Privacy policy — what happens to uploaded files?
  2. Network requests — does your file actually go somewhere?
  3. Data retention — how long do they keep your files?

The Results

Metric Result
Tools that upload files to servers 9 out of 10
Tools that process locally in browser 1 out of 10
Avg file retention time 1-24 hours
Tools requiring registration 8 out of 10
Tools with daily limits 9 out of 10

What Privacy Policies Actually Say

Direct quotes from major PDF tools:

"We may retain uploaded files for up to 24 hours."

"Files are stored on our secure servers during processing."

"We reserve the right to analyze uploaded content for service improvement."

Read that last one again: "analyze uploaded content." Your contracts. Your tax returns. Your medical records.

How to Check Any PDF Tool Yourself (60 Seconds)

  1. Open Chrome DevTools (F12)
  2. Go to the Network tab
  3. Upload a PDF to the tool
  4. Watch for a POST request with a large payload

If you see one → your file just left your computer.
If you see zero network activity → it's processing locally.

The One That Didn't Upload

PDF Toolbox — open-source, 8 PDF tools, everything runs in your browser via WebAssembly. Zero network requests.

What's in Your PDFs?

  • Tax returns with your SSN
  • Employment contracts with salary details
  • Medical records with personal health information
  • Bank statements with account numbers

None of this belongs on a stranger's server.

Bottom Line

  1. Most "free" PDF tools are paid with your data
  2. Browser-based tools exist that never upload files
  3. You can verify any tool in 60 seconds with DevTools
  4. Never upload sensitive documents to web-based tools

Have you checked what happens to your files? Try the DevTools test and share what you find.

Top comments (0)