How to Merge PDFs Without Uploading Them to a Sketchy Website

The Problem With "Free" Online PDF Mergers

You've been there. You have three PDFs — maybe a contract, a scanned ID, and a cover letter — and you need them as one file. You Google "merge PDFs free," click the first result, drag your files in, and hit download. Done in 30 seconds.

But here's what actually happened in those 30 seconds: your files were uploaded to a server you know nothing about, processed by software you've never audited, stored for some unspecified "retention period," and possibly logged for advertising or data purposes. The site's privacy policy — if you could find it — probably covers them in the event of a breach.

For a bunch of memes or a recipe PDF? Sure, maybe you don't care. But people upload pay stubs, medical records, legal documents, and signed contracts to these sites every single day without a second thought. That's the problem.

The good news: you don't need to upload anything. Merging PDFs locally is genuinely easy, and once you know how, you'll never go back.

Why "Browser-Based" Doesn't Always Mean "Cloud"

This is worth pausing on, because there's a real distinction here that most people miss.

Some tools advertise themselves as "browser-based" and mean it — the PDF processing literally happens in your browser using JavaScript and WebAssembly, and your files never leave your machine. These are actually fine. The browser is just doing the work locally, same as any desktop app would.

But most of the popular online PDF tools? When you upload a file and click "merge," that file travels over the internet to their servers. You're trusting a company you've never heard of with documents that might contain your Social Security number, your salary, or your address.

So the question to ask any online tool is: does processing happen client-side or server-side? If they don't clearly say "files never leave your device," assume they're uploading.

Option 1: Use Your Mac — No Download Required

If you're on macOS, you already have a perfectly capable PDF merger sitting in your Applications folder: Preview.

Here's how it works:

  1. Open the first PDF in Preview.
  2. Go to View → Thumbnails to show the sidebar.
  3. Drag your second PDF from Finder directly into the thumbnail sidebar, dropping it where you want it to appear in the final document.
  4. Repeat for any additional files.
  5. Go to File → Export as PDF and save the merged file.

That's it. No software to install, no account to create, nothing uploaded anywhere. The entire operation happens on your Mac.

One thing to watch: make sure you use Export as PDF, not just Save. If you use the regular Save command, you might end up with a Preview-specific format that causes issues elsewhere. Export gives you a clean, universal PDF.

Option 2: PDFtk — The Command Line Swiss Army Knife

If you're comfortable with a terminal, PDFtk (PDF Toolkit) is incredibly powerful and has been around for ages. It's free, open-source, and processes everything locally.

On a Mac with Homebrew installed, you can get it with:

brew install pdftk-java

Then merging three files is literally one line:

pdftk file1.pdf file2.pdf file3.pdf cat output merged.pdf

PDFtk can do way more than just merge — it handles splitting, rotating pages, filling forms, adding watermarks, and extracting specific page ranges. Once you have it installed, you'll find yourself reaching for it constantly.

Windows users can grab a direct installer from the PDFtk project site. Linux users can install it through their package manager.

Option 3: PDF24 Creator (Windows) — Offline and Free

For Windows users who want a graphical interface rather than a command line, PDF24 Creator is worth a look. It's a free desktop app with a drag-and-drop PDF merger, and crucially, the desktop version works entirely offline.

The same company runs a web version — and that one does upload files — so make sure you're downloading the desktop app specifically. The distinction matters.

Once installed, you open the PDF Merger tool, drag your files into the window, reorder them as needed, and export. Clean and simple.

Option 4: LibreOffice Draw — The Underrated Option

LibreOffice is mostly known as a free alternative to Microsoft Office, but its Draw component can open PDFs and export them back out. It's not the slickest workflow, but if you already have LibreOffice installed, it works.

The more interesting option: LibreOffice has a built-in macro system, and people have written scripts specifically for PDF merging. If you're dealing with this regularly in a work context, it's worth looking into.

What About Genuinely Safe Browser Tools?

If you do want a browser-based tool for convenience, there are a couple that are transparent about processing files locally. PDF.js (Mozilla's open-source project) and tools built on PDF-lib.js run entirely in the browser. You can often verify this by opening your browser's network monitor (F12 in Chrome → Network tab) and watching whether any file upload requests happen when you add your PDFs. If nothing leaves your browser, you're safe.

Smallpdf and ILovePDF are two of the most popular online PDF tools, and both upload to servers. They're not "sketchy" in the traditional sense — they're legitimate companies with real privacy policies — but your files do go to their infrastructure. For genuinely sensitive documents, that's still a risk you might not want to take.

A Quick Checklist Before You Merge

Before you decide on a method, run through this quick mental checklist:

  • Does this PDF contain personal information? Names, addresses, financial data, medical info — if yes, local-only.
  • Is this a signed legal document? Contracts, NDAs, agreements — local-only, no question.
  • Did someone else share this with you in confidence? Uploading a document someone sent you privately to a third-party server is a trust issue, not just a personal risk issue.
  • Is this purely non-sensitive? A recipe collection, a public brochure, some product documentation? A reputable online tool is probably fine.

Organizing Before You Merge

One thing people skip that saves a lot of headache: before merging, make sure your source PDFs have clean, descriptive filenames. When you're dragging files around in Preview or listing them in a PDFtk command, file1.pdf, file2.pdf, scan001.pdf becomes a nightmare fast.

Rename them first so the order is obvious — something like 01_contract.pdf, 02_appendix.pdf, 03_signatures.pdf. That way, even on the command line, alphabetical order puts them in the right sequence.

Also worth checking: are any of your source PDFs password-protected? Both Preview and PDFtk will ask for the password before processing, so you'll need those handy. And some PDFs have permissions locked down to prevent editing or merging — if you get an error, that's probably why.

The Bigger Picture: Get Picky About Where Your Files Go

PDF merging is kind of a gateway drug for thinking more carefully about file privacy in general. Once you start noticing that online "tools" are really just file uploading services with some processing on the backend, you start asking the same question about a lot of things: photo compressors, document converters, file format changers.

A decent rule of thumb: for anything that processes files you'd be embarrassed or harmed by if they leaked, look for desktop software first. The free, open-source ecosystem is genuinely excellent at this stuff. PDFtk, LibreOffice, Ghostscript, ImageMagick — these tools have been battle-tested for years and they work entirely on your machine.

The convenience of online tools is real, but so is the risk. And now that you know how easy the local alternatives actually are — especially on a Mac where Preview does it in about four clicks — there's really no reason to upload sensitive documents to a server you don't control.

Merge locally. It takes two minutes and your files stay yours.

Disclaimer: This article is for general informational and educational purposes only and does not constitute professional, financial, medical, or legal advice. Results from any tool are estimates based on the inputs provided. Always verify important details and consult a qualified professional before making decisions.