There is a shortcut almost nobody knows about. Add /.well-known/change-password to any website's address, and you are supposed to land directly on that site's change-password form. No hunting through account settings, no three-level menu.
It is a real standard, and it exists mainly so your password manager can offer you a Change password button that actually goes somewhere.
So I measured how many major sites honour it. On 2026-08-24, I probed 40 well-known domains, one request each, following redirects. The raw data and method are published as an open dataset with a DOI: 10.5281/zenodo.22084121. You can rerun the whole thing with curl in a few minutes.
Here is what came back.
The result: 11 out of 40
11 redirect to a real password page
24 return nothing at all (404 / 403)
5 look like support without being it
The eleven that work: 1Password, Adobe, Airbnb, Apple, Facebook, GitHub, Netflix, Notion, Reddit, WordPress.com, X.
The twenty-four with nothing there include names you would expect to do better: Google, Microsoft, PayPal, Dropbox, eBay, Slack, Spotify, Stripe, Shopify, Cloudflare, GitLab, Zoom, Salesforce, Booking.com.
The five that look like they work
This is the part worth your attention, because it is invisible unless you actually open the page.
Keeper answers HTTP 200 and shows you its own 404. The URL keepersecurity.com/.well-known/change-password redirects to keepersecurity.com/404/, a page titled "The page you requested doesn't exist.", served with a success status code. Any tool checking only the status code concludes the shortcut works. A human clicking the button lands on a dead end.
Proton redirects to the wrong document. protonmail.com/.well-known/change-password sends you to /.well-known/security.txt, which is a different well-known URI entirely: it lists security contact details, not a password form.
LinkedIn answers 200 with a reCAPTCHA challenge page. Twitch answers 200 with its generic 194 KB application shell. Amazon returned a 503 at the moment of measurement.
Count by status code alone and you get 16 working sites. Open the pages and the real number is 11. That gap is the whole reason this measurement was worth doing.

Checking this yourself takes one browser window: type the address, add the path, press enter, and look at where you actually land.
The uncomfortable finding: password managers
Of the six password managers I probed, one works.
1Password works
Bitwarden nothing at that URL
Dashlane nothing at that URL
LastPass nothing at that URL
NordPass nothing at that URL
Keeper HTTP 200, own 404 page
The shortcut exists so that a password manager can send you straight to a site's form. Five of the six tools built to consume it do not publish it on their own site.
That is not a security hole, and it will not leak your vault. It is a small sign of how much attention a vendor pays to the plumbing that makes password hygiene painless rather than tedious. Changing a password is the one thing you do after a breach, in a hurry, usually annoyed. Every extra click is a reason to postpone it.
A note on what this article does not do. PwdFortress runs affiliate links, and the honest reading of this measurement does not support one. The only manager that publishes the shortcut is 1Password, which we have no partnership with; the manager we do partner with returns nothing at that URL. Putting a recommendation here would contradict the table above it. The data goes out as measured.
How to check any site in ten seconds
Type the site's address, add /.well-known/change-password, press enter.
- You land on a password or security settings page: it works.
- You get a 404, the home page, or an error: it does not.
From a terminal, this prints both the status code and where you ended up:
curl -sL -o /dev/null -w '%{http_code} %{url_effective}\n' https://example.com/.well-known/change-password
Watch for the case above: a 200 that lands on something that is not a password form. The status code and the destination have to agree.
What this measurement does not say
One measurement, one vantage point, one date: 2026-08-24. Sites A/B test, route by region, and block automated requests. Seven of the forty refused my request outright, and I recorded those separately rather than counting them as failures, because "this site has no shortcut" and "this site would not answer me" are two different facts and only one of them is about the site.
I also probed apex domains only. A site publishing the shortcut solely on a regional or www host would read as absent here.
If a vendor has fixed theirs since, the dataset carries its date, and rerunning it is a three-minute job.
★ Audit Cure53 2024 · ✓ Plan gratuit · Cross-platform
Lock down your accounts → NordPassStrong unique passwords · breach scanner · free tier→Frequently asked questions
What is /.well-known/change-password?
It is a standard shortcut URL. Adding /.well-known/change-password to a site's address is meant to redirect you straight to that site's change-password form, so you do not have to hunt through account settings. It exists so that password managers and browsers can offer a one-click change password button, and so that any tool can find the right page without guessing. The specification says the URL should redirect to the real form, not serve a page of its own.
Which sites support well-known change password?
In a measurement of 40 major sites on 2026-08-24, eleven redirected to a genuine password page: 1Password, Adobe, Airbnb, Apple, Facebook, GitHub, Netflix, Notion, Reddit, WordPress.com and X. Twenty-four returned a plain 404 or 403, including Google, Microsoft, PayPal, Dropbox, Slack, Spotify, Stripe, Shopify and GitLab. The rest either refused the request or answered in a way that only looked like support.
Do password managers support the change password URL?
Mostly not, which is the surprising part. Of six password managers tested on 2026-08-24, only 1Password redirected to a working change-password page. Bitwarden, Dashlane, NordPass and LastPass returned nothing at that URL, and Keeper redirected to its own 404 page while answering HTTP 200. The shortcut exists precisely so a password manager can send you to a site's form, so five of the six tools that would consume it did not publish it themselves.
Why does a site return 200 but show an error page?
That is called a soft 404. The server sends the success status code 200 while the page content says the resource does not exist. It matters here because any software checking only the status code will believe the shortcut works. In this measurement, Keeper answered 200 with a page titled The page you requested doesn't exist, and LinkedIn and Twitch answered 200 with a bot challenge and a generic app shell respectively. A status-code-only survey would have counted 16 working sites instead of 11.
How do I check whether a site supports it myself?
Type the site's address followed by /.well-known/change-password in your browser and press enter. If you land on a password or security settings page, it works. If you get a 404, a home page, or an error, it does not. You can do the same from a terminal with curl -sL -o /dev/null -w '%{http_code} %{url_effective}' followed by the URL, which prints the status code and where you ended up. The whole measurement behind this article was done that way and can be repeated in a few minutes.



