← Back to All Tools

Can a Website See the Password You Generate?

[ Ad Space 970×90 — AdSense ]

It's a fair question. You type nothing, click a button, and a strong password appears. But where was it actually made — on your computer, or on theirs? The answer decides whether the site can see (and log) your password.

1. Two kinds of generators

Server-side generators create the password on the website's server, then send it to your screen. The password existed on their machine first. A careless or malicious operator could log it. That quietly defeats the purpose of a "secure" password.

Client-side generators do everything in your browser, using JavaScript. The password is assembled on your own device and never leaves it. The website's server is never involved in making it.

2. How to tell which one you're using

3. Why Jisubao's generator is private

Jisubao generates passwords with the Web Crypto API (crypto.getRandomValues) — the same primitive browsers use for TLS and secure sessions. The password is produced on your device and never transmitted anywhere. We literally cannot see it, because it never reaches our servers.

👉 Try it: Jisubao Password Generator →

4. Good hygiene still matters

A local generator removes the "can they see it" risk. A manager and 2FA remove the "what if one site leaks" risk. Use all three.

[ Ad Space 728×90 — AdSense ]