← Back to Blog

How to Audit Your Browser Tools for Privacy and Security

Every day, developers paste sensitive data into online tools without a second thought — a production API response into a formatter, a private key into a converter, a customer export into a validator. Most of the time nothing bad happens. Sometimes it does, and the cost of that "sometimes" is high enough that it's worth knowing how to vet a tool before you trust it. The good news is that auditing a web tool takes about two minutes, requires no special expertise, and works on any tool on the internet. Here's the checklist I use.

The fifteen-second test: watch the Network tab

The single most revealing thing you can do with any online tool is open your browser's developer tools and watch what leaves the page. The Network tab is a live log of every request the page makes. If a tool claims to be "private" or "client-side" but quietly ships your input to a server, this is where you'll catch it.

Here's the procedure, step by step:

That's the whole test. A genuinely client-side tool will show only the background requests it always makes — analytics, ad scripts, font loading — and none of them will contain your input. A server-side tool will show a request carrying your test string, and you've just learned everything you need to know.

Why a unique marker? Using a distinctive string makes it obvious whether it reappears in a network request. "test" might appear in legitimate background traffic; ZZZ_TEST_MARKER_9988 won't appear anywhere unless the tool sent it.

Reading the request details

When you click on a request in the Network tab, you can inspect its details. A few things tell you what's really happening:

Red flags beyond the network

Network behavior is the most decisive signal, but it's not the only one. A few other indicators that a tool deserves extra scrutiny:

Heavy tracking scripts

Even if a tool is client-side, the page itself can be loaded with trackers — analytics, advertising pixels, fingerprinting scripts. None of these see the contents of your computation, but they do build a profile of your visit. If a simple utility page is running twenty tracking scripts, the operator's priorities are telling you something. I've seen JSON formatters that load Google Analytics, Facebook Pixel, Hotjar, and three ad networks before the formatter even renders.

No source code and no explanation

A trustworthy tool usually explains how it works, and ideally lets you read the code. A page that demands you trust it on faith, with no technical detail and no link to its source, gives you no way to verify its claims. The strongest tools publish their code — even minified, the fact that it's there to inspect matters. My own tools at Duc Nguyen are all client-side and you can verify them in the Network tab yourself.

Requests to unexpected domains on input

The cleanest tools load everything they need once and then sit quiet. If pasting input triggers a flurry of requests to domains you don't recognize, treat that as suspicious. A client-side tool should not need to phone home when you type.

HTTPS is necessary but not sufficient

A site without HTTPS is an immediate no — never paste anything sensitive into a page served over plain HTTP. But the presence of HTTPS (the lock icon) only means the connection is encrypted in transit. It tells you nothing about what the server does with your data once it arrives. I covered this distinction in why client-side tools protect your privacy: encryption in transit is not privacy at rest.

The trust hierarchy

After running these checks, tools fall into a rough hierarchy. Knowing where a tool sits helps you decide what data it's safe to feed it:

What I build against, and why

This checklist isn't theoretical for me — it's the standard I hold my own tools to, and the reason they're built the way they are. When I ship a JSON formatter or a hash generator, it has to pass its own audit: no network request carrying user input, ever, regardless of what's pasted in. That's only achievable because the tools are architecturally client-side; there's no server for the data to reach even if something went wrong. You can run the fifteen-second test on any tool on this site and confirm it for yourself.

The point of publishing this checklist isn't to steer you toward my tools specifically. It's to give you a durable skill: the ability to evaluate any online utility, anywhere, in under two minutes. The web is full of convenient tools, and many of them are perfectly safe. A handful are not. Knowing how to tell the difference is the difference between convenience that's genuinely free and convenience that quietly costs you something.

The bottom line: a tool's privacy is a property of its architecture, not its marketing. Don't trust a "we respect your privacy" badge — trust the Network tab. It never lies, and it takes less time to read than the privacy policy you were going to skim instead.

A quick pre-flight routine

If you handle sensitive data regularly, make this a habit before pasting into any unfamiliar tool: open DevTools, watch the Network tab, paste a test marker. Two minutes, every time. Once you've done it a few times it becomes automatic, and you'll develop a shortlist of tools you've already vetted and trust. The ones that don't pass, you'll simply stop using — and that's a quiet, significant improvement to your security posture that costs you almost nothing.

Build this habit into your workflow explicitly. When you start a new week, check which online tools you used the previous week and run the fifteen-second test on any you haven't vetted yet. Over a month, you'll have audited every utility you rely on, and you'll have a clear mental model of which ones deserve your trust and which ones are fine only for throwaway data. The cost is a few minutes per tool, amortized across every future use. Most developers I've shared this with report that after the first month of auditing tools as they encounter them, the habit runs on autopilot — they open DevTools alongside a new tool the way they naturally reach for ad-blockers and password managers. It becomes part of a baseline security posture that operates without conscious effort, and that's precisely where you want it.

And if you're building tools yourself — even small internal ones — consider making them verifiably client-side from the start. The architecture choice costs nothing upfront (static files are cheaper to host than a server anyway), and it turns a privacy promise from a marketing claim into something your users can confirm with DevTools in fifteen seconds. That's the kind of trust you can't buy, and it's the only kind that matters for tools that handle sensitive input. When every user can independently verify that their data stays on their device, you've eliminated the need for privacy theater entirely, and you've built a relationship with your audience that's grounded in verifiable fact, not aspirational promises.

Common mistakes developers make when auditing

Even with the Network tab open, it's easy to misread what you're seeing. Here are the pitfalls I've watched smart developers fall into: