Password hash & token scrubber
Logs and config snippets are full of things you should never paste into a chat window — bcrypt hashes, JWTs, bearer tokens, API keys, session IDs. The moment they leave your machine they can be cracked, replayed, or abused. This scrubber scans pasted text for the well-known secret and hash formats and swaps each one for a type-labeled placeholder, so you can share a sanitised version with an AI or a colleague while keeping the log structure intact.
How it works
Everything runs locally in your browser. The tool applies a set of patterns for
each format — bcrypt ($2a$/$2b$), Argon2 ($argon2), hex hashes by length
(MD5, SHA-1, SHA-256), three-segment JWTs, bearer/OAuth tokens, AWS-style and
generic API keys, and long opaque session strings. Each match is replaced inline
with a placeholder like [REDACTED_JWT] or [REDACTED_BCRYPT], and you get a
per-type count so you know exactly what was removed. The surrounding text is left
untouched so the output stays readable.
Tips and limits
Redact even one-way hashes: weak or unsalted hashes can be cracked offline, and tokens or API keys are often live credentials that grant direct access. Because this is pattern-based it is excellent on standard formats but cannot recognise every bespoke token scheme — always review the output by eye and never treat a clean result as proof there are no secrets left. For anything truly sensitive, rotate the credential as well as redacting it; once a secret has been exposed, redaction does not un-expose it.