Free Security Tools Online

Home / Tools / Security

Security tools online, with the honest part stated up front

Generate passwords, check certificates, inspect headers, sign messages and audit DNS. Some of these can run entirely on your device. Some physically cannot, because they have to ask a remote server a question. This page tells you which is which before you type anything.

Never leaves your browser Password generator · Password strength tester · HMAC generator · Cookie consent generator · Privacy policy generator
Requires a network lookup SSL certificate checker · DNS lookup · HTTP header checker
Full disclosure

Exactly what happens to what you type

A security tool asking you to trust it without explaining itself is a contradiction. So here is the breakdown, tool by tool.

ToolWhere it runsWhat is sent, if anything
Password generatorLocalNothing. Randomness comes from crypto.getRandomValues in your browser.
Password strength testerLocalNothing. The password is scored in the page and never transmitted.
HMAC generatorLocalNothing. Message and secret key both stay in memory, via the Web Crypto API.
Cookie consent generatorLocalNothing. Output is assembled from your inputs in the page.
GDPR privacy policy generatorLocalNothing. Company details are only used to fill the template you see.
SSL certificate checkerNetworkThe domain name you enter, so the certificate chain can be fetched and read.
DNS lookupNetworkThe domain name, sent to a public DNS over HTTPS resolver.
HTTP header checkerNetworkThe URL you enter, so its response headers can be retrieved.

The pattern is simple. If the answer depends on something only a remote server knows, such as which certificate a domain is presenting today, the domain has to be sent somewhere. If the answer can be computed from what you typed, it is computed here and nothing moves. No tool in the second group ever sends a password, a key or a message body.

Status board

Which algorithms are still safe to use

The hash and HMAC tools support older algorithms because people still need to verify legacy output. Supporting one is not a recommendation. Here is where each actually stands.

MD5Broken

Practical collisions since 2004, and chosen prefix collisions since 2007. Fine for a non adversarial checksum. Never for signatures, certificates or passwords.

SHA-1Broken

The SHAttered attack produced a real collision in 2017. Retired from TLS certificates. Git still uses it for object naming with added hardening.

SHA-256Recommended

The workhorse. No practical attacks. The right default for integrity checks, HMAC and digital signatures.

SHA-512Recommended

Same family, larger digest. Often faster than SHA-256 on 64 bit hardware despite the bigger output.

SHA-3Recommended

Keccak based, structurally different from SHA-2. Immune to the length extension issue by design.

Plain SHA for passwordsWrong tool

Fast hashing is the problem, not the solution. Use bcrypt, scrypt or Argon2, which are deliberately slow and salted.

One subtlety worth knowing if you build your own integrity check. SHA-256 is vulnerable to a length extension attack, meaning someone who knows hash(secret + message) and the length of the secret can compute a valid hash for a longer message without knowing the secret. That is precisely the problem HMAC solves, and it is why you should reach for HMAC rather than concatenating a key onto a message yourself.

Password strength

What a strength score actually measures

Strength is entropy, measured in bits, and entropy is a property of how a password was generated rather than how it looks. A password is not strong because it contains a symbol. It is strong because there were too many equally likely alternatives.

0guessed instantly
40 bitshours on a GPU
60 bitsyears
80 bitscomfortably safe
128 bitsnot brute forceable
PasswordEntropyWhy
P@ssw0rd!About 10 bitsA dictionary word with predictable substitutions. Cracking tools try these first, so the symbols buy almost nothing.
Summer2026!About 16 bitsSeason plus year plus punctuation is one of the most common patterns in every breach corpus.
xkcd style, 4 wordsAbout 44 bitsFour words drawn randomly from a 7,776 word list. Weak against a targeted attack, fine for many uses.
xkcd style, 6 wordsAbout 66 bitsSame method, two more words. Memorable and genuinely strong.
16 random charactersAbout 95 bitsGenerated from a 70 character set with real randomness. Use a manager, do not memorise it.

Note the third row. A four word passphrase has more entropy than P@ssw0rd! by a factor of billions, despite looking simpler to a human and failing many corporate complexity rules. This is why NIST SP 800-63B now advises against forced composition rules and periodic expiry, and recommends length plus a check against known breached passwords instead.

Browse more

Beyond security

Every category on ConvertNow, free and updated as new tools launch.

FAQ

Security tools online questions, answered plainly

Where the data goes, which algorithms to trust, and what these tools cannot do.

Which of these tools send data over the network?
Three of them, and only because they have to. The SSL certificate checker, DNS lookup and HTTP header checker send the domain or URL you enter, since the answer lives on a remote server. The password generator, strength tester, HMAC generator and both policy generators send nothing at all.
Is it actually safe to generate a password here?
Yes. Randomness comes from crypto.getRandomValues, the browser cryptographic random number generator, and the result is never transmitted. If you would rather not trust any website with this, a password manager generating locally is the stronger habit and we would recommend it.
Can you reverse a hash back to the original?
No. Hashing is one way by design. What attackers do instead is hash enormous lists of likely inputs and compare, which is why common passwords appear in rainbow tables. It is also why password storage needs a slow salted algorithm rather than a fast hash.
Why do you still offer MD5 and SHA-1 if they are broken?
Because people need to verify legacy output, check an old checksum or reproduce a hash a third party system generated years ago. Offering an algorithm is not endorsing it, which is why the status board on this page marks both as broken rather than listing them neutrally.
Should I use SHA-256 to store passwords?
No. Fast hashing is the problem, not the solution, because speed helps the attacker far more than you. Use bcrypt, scrypt or Argon2, which are deliberately slow and salted. SHA-256 is right for integrity checks and signatures, not password storage.
Is the generated privacy policy legally sufficient?
It is a solid starting draft, not a finished document. It does not know your jurisdiction, your data processors, your retention periods or your international transfer arrangements. Have someone qualified review it before you publish, particularly if you operate in the EU or handle special category data.
What is the strength meter actually measuring?
Entropy in bits, which is a property of how a password was generated rather than how complicated it looks. Four random words score far higher than a short string full of symbol substitutions, because entropy comes from the number of equally likely alternatives.
Do you keep a record of the domains I look up?
No. Lookups are performed on demand and rendered straight to the page. Nothing is stored against you, no history is kept, and DNS queries go through an encrypted DNS over HTTPS resolver rather than plain port 53.
Ground rules

How to use these safely

Three things worth holding onto, whichever tool on this page you reach for.

Generate, do not reuseA generated password is only strong the first time it is used. Reusing it across accounts turns one breach into several, regardless of how much entropy it started with.
Treat live secrets carefully anywhereThese tools do not transmit your input, but good habit does not depend on one site behaving well. Rotate anything you have pasted into a browser you do not control.
A generator is not legal adviceThe privacy policy and cookie consent tools produce a solid starting draft. They do not know your jurisdiction, your processors or your data flows. Have someone qualified review before you publish.
Explore all tools
Image
Privacy Overview

Cookies let this site remember your preferences and show us which tools people actually use. Full detail sits in our Privacy Policy.