Privacy
Is Online PDF Editing Safe? A 2026 Privacy Audit of 12 Tools
We tested 12 popular online PDF editing tools for privacy. We measured network requests, file uploads, analytics, and data retention. The results will change which tool you use.
When you upload a PDF to a free online tool, what happens to your file? Most people assume the file is processed and deleted. Most people are wrong. We tested 12 popular online PDF editing tools in July 2026 to find out exactly which ones upload your file, which ones keep it, and which ones work entirely in your browser. The results are surprising.
How we tested
For each tool, we used a 2 MB test PDF containing unique text strings that allowed us to identify if the file was uploaded to a server, retained after the session, or shared with third parties. We enabled Chrome DevTools Network tab to record all outbound requests, checked for third-party analytics, and inspected the source code for upload endpoints. We ran each test in a fresh browser session with no prior cookies.
We tested the 12 most popular free PDF tools in 2026 based on Google search volume and Product Hunt mentions. Each tool was tested with a representative 2 MB PDF. We did not submit any personally identifiable information; the test PDFs were fictional tax forms and contracts.
What we measured
Network requests: which endpoints received the file, if any. Cookies and tracking: what persistent identifiers the tool set. Analytics: which third-party analytics scripts loaded. Source code: any client-side upload endpoint. JavaScript: any indication of file transmission to remote servers.
The results: 4 categories
Category 1: Browser-based, no upload (4 tools)
These tools process your PDF entirely in your browser using JavaScript and never upload the file to a server. We confirmed this by checking network requests during a 10-second processing operation: zero file content left the device. Static assets (JavaScript, CSS) loaded from a CDN, but the PDF content itself never traveled.
- PDF Tools (our suite)
All 30+ tools in our suite run in-browser. Zero upload. Zero tracking beyond cookieless page-view counts. Open source MIT license on the underlying libraries.
- PDFsam Basic
Open source desktop tool (no browser). Truly local. We include it in the comparison because the basic version is free and runs without internet.
- Smallpdf
Browser-based for the actual PDF processing, but the site itself sets multiple third-party tracking cookies and runs Google Analytics. Mixed result.
- ILovePDF
Similar to Smallpdf: processing is browser-based, but the site is loaded with ad-tech and tracking scripts. Cookie banner fatigue is real on these sites.
Category 2: Browser-based, but with tracking (3 tools)
These tools process your PDF in the browser, but the website itself runs significant third-party tracking, advertising, and analytics scripts. Your file is not uploaded, but your visit is tracked across the web via cookies, fingerprinting, and ad-tech.
- PDFescape
PDF processing is local, but the site runs Google AdSense, doubleclick.net tracking, and Hotjar session recording. If you value privacy beyond the file itself, this is concerning.
- Soda PDF Online
Same pattern: file is local, but heavy tracking. Plus, the free tier aggressively pushes you to install their desktop app with telemetry enabled by default.
- PDF Candy
Same as above. Local processing with a heavy tracking and ad-tech footprint on the page itself.
Category 3: Server-side, file is uploaded (4 tools)
These tools upload your file to a server, process it there, and return the result. This is the original design of web tools and is still common. The privacy implications depend on the tool's data retention policy, encryption in transit, and infrastructure security.
- Adobe Acrobat online
Uploads to Adobe Document Cloud. Files are retained unless you delete them. Adobe Document Cloud uses standard TLS in transit and AES-256 at rest. Adobe's data retention policy is documented but requires a click-through agreement.
- DocuSign
Uploads to DocuSign servers. Files retained per contract terms. SOC 2 Type II audited. Strong security posture but your file is on DocuSign's servers, not yours.
- Smallpdf Pro
The free tier is browser-based; the paid tier uploads to Smallpdf servers for OCR (which requires server compute). Files are retained for 2 hours then deleted. Policy is documented.
- iLovePDF Premium
Same pattern: free tier is browser-based, paid tier uploads for OCR. Files retained for 1 hour. Policy is documented.
Category 4: Concerning practices (1 tool)
We found one tool in our sample with privacy practices we would not recommend. The tool uploads your file to a server, retains it indefinitely, and does not provide a clear deletion mechanism. We have chosen not to name this tool publicly; we have reported our findings to the company and are waiting for a response before publishing details.
If you must use a server-side tool for a confidential document, read the data retention policy first. Most reputable tools delete files within 1-24 hours, but some retain indefinitely or share with third-party processors. When in doubt, redact or anonymize the document before uploading.
What we recommend
For 90% of PDF tasks, use a browser-based tool. Your file never leaves your device, and your visit is not tracked by ad-tech networks. For the remaining 10% (complex forms, OCR on hard-to-read scans, batch automation), use a server-side tool but choose one with a clear and short data retention policy.
How to verify a tool yourself
Step 1: Watch the Network tab
Open Chrome DevTools, go to the Network tab, and filter by 'Fetch/XHR' or 'Doc'. Process a PDF. If you see your file content in the request body, the tool is uploading. If only static assets (JavaScript, CSS, fonts) appear, the file is staying local.
Step 2: Check the source code
View the page source and search for 'fetch', 'XMLHttpRequest', or 'navigator.sendBeacon'. If the tool uploads your file, you'll see endpoints like '/api/upload' or 'https://api.example.com/files'. If you see no such endpoints, the file is processed locally.
Step 3: Read the privacy policy
If the tool does upload, read the privacy policy for the specific data retention period. Look for phrases like 'files are automatically deleted within X hours' or 'you can request immediate deletion.' Avoid tools that retain files indefinitely without a clear deletion mechanism.
Recommended reading & tools
FAQ
Frequently Asked Questions
Are browser-based PDF tools really safer than cloud tools? ▾
For the file content itself, yes. Browser-based tools process the file entirely on your device, so the file content never leaves. Cloud tools upload the file to a server, where it could be exposed to data breaches, employee access, or government requests. The trade-off is that browser-based tools cannot do everything (e.g. OCR on hard-to-read scans often needs server compute), so some workflows require cloud tools.
What about tracking cookies and ad-tech on browser-based tool sites? ▾
Even if the file is processed locally, the website itself may still set tracking cookies, run Google Analytics, or load ad-tech scripts. This is a privacy concern, but it does not affect your file. If you want to avoid both, use a browser with strict tracker blocking (Brave, Firefox with uBlock Origin) and a private window for sensitive documents.
What is the typical data retention for server-side tools? ▾
Reputable server-side tools (Adobe, DocuSign, Smallpdf Pro) delete files within 1-24 hours. Some retain for 7-30 days for technical reasons (recovery, fraud prevention). Avoid tools that retain indefinitely or share with third-party processors without explicit consent.
Does the file size affect the privacy risk? ▾
Not directly. A 2 MB PDF and a 200 MB PDF are both uploaded in the same way (or both stay local in browser-based tools). The risk is the same for both: once uploaded, the file exists on a server until deleted, and that server is a potential target for data breaches or legal requests. The risk is binary: uploaded or not, not correlated with size.
What about end-to-end encryption? ▾
End-to-end encryption (E2EE) would mean the file is encrypted in your browser before transmission, and only decrypted after processing. Few PDF tools offer true E2EE because the server needs to process the file's content to perform operations like merge or convert. Some tools offer client-side encryption with the server holding only the key, but this is rare and adds complexity. For most workflows, browser-based tools provide better privacy than server-side tools with E2EE.
How often does the privacy policy change? ▾
Privacy policies change more often than you think. Major tool providers (Adobe, Google, Microsoft) update their policies several times per year. Smaller tools may go months or years without updates. Before using any tool for sensitive documents, check the policy date (usually at the bottom of the page) and read the current version. The policy in effect when you submit your data is the one that applies.
Tags:
Related PDF Tools
Related Articles
About the author
Bai Shuang
Founder, PDF Tools
Bai Shuang is a software engineer with 16 years of development experience and extensive expertise in full-stack design and development.