Privacy

The short version: what you type, paste, or open in a tool stays on your device. There is no server to send it to.

Last updated: July 27, 2026

This page is written to be checkable rather than reassuring. Anything below can be verified from your own browser in about a minute, and the last section tells you how. Where something does leave your browser, it is named here — a privacy page that claims “no third-party requests” while loading two of them is worse than no privacy page at all.

What Sofritools does not do

What does leave your browser

Exactly two third parties are contacted, and neither one receives your input.

One more thing worth stating plainly, since it is true of every website: the site is hosted on Cloudflare, so requests for these pages pass through their network and appear in ordinary edge logs (IP address, URL, timestamp, user agent) the same way they would with any host. That is request metadata, not your data. SeeCloudflare’s privacy policy and Google’s for what each of them does with it.

How to check all of this yourself

Do not take my word for it. Three things you can do right now:

  1. Open your browser’s developer tools, go to the Network tab, then use any tool on this site with real input. You will see the two hosts above and nothing else. You will not see your input going anywhere, because there is no request carrying it.
  2. In the same panel, look at the response headers for the page. The site sends a Content-Security-Policy that your own browser enforces — it is a list of the only places this page is permitted to talk to. A tool that tried to POST your data to some other endpoint would be blocked by the browser, not merely discouraged by me.
  3. Turn off your Wi-Fi and keep using the tool. After your first visit the tools keep working offline, which is only possible because the work was never happening on a server.
default-src 'self';
script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com;
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;
font-src https://fonts.gstatic.com;
img-src 'self' data:;
connect-src 'self' https://cloudflareinsights.com;
frame-ancestors 'none'
The Content-Security-Policy header this site serves. Note connect-src: the page may only open connections to itself and to the analytics endpoint.

Offline use and the service worker

The site registers a service worker so the tools work with no connection. It keeps copies of pages, styles, scripts, and icons in your browser’s own Cache Storage, on your device. That cache holds the site’s files, never your input, and nothing in it is sent anywhere. You can wipe it any time by clearing site data for sofritools.com in your browser settings. Pages are always fetched from the network first when you are online, so an update reaches you immediately rather than being masked by a stale copy.

Your data rights, briefly

There is nothing to request, export, or delete, because there is nothing held: no account, no database, no analytics profile tied to you, no email address. If you are evaluating this site for GDPR, CCPA, or an internal review, the useful summary is that Sofritools collects no personal data and processes no user content off-device; the only processing that happens at all is your host-level request metadata at Cloudflare, and the font requests your browser makes to Google.

If any of this changes

Sofritools will eventually carry contextual affiliate links, and high-traffic converter pages may carry ads. If and when that happens, this page changes first and says exactly what was added, what it loads, and from where. Three things are not on the table regardless: uploading your files, tracking cookies, and selling anything about you. If you ever find this page contradicting what the site actually does, treat your browser’s network tab as the source of truth and this page as the bug.