// BREACH

Email Breach Check

Check whether an email address appears in known data breaches and paste dumps indexed by public breach databases.

We match the email against public breach datasets (via XposedOrNot). Your address is not stored.

// Understanding data breaches

When a company is compromised, the account data it held usually ends up circulating. It gets sold, then traded, then eventually dumped somewhere anyone can download it. Researchers catalogue those dumps into searchable databases. Checking your address against them tells you whether it turned up in a breach that has been catalogued.

The real risk is not that someone knows your email address. It is that they might know a password you used, and that people reuse passwords. That is the whole mechanism behind most account takeovers, and it is why a breach at a service you abandoned years ago can still cost you an account today.

Credential stuffing, and why reuse is the real problem

Credential stuffing is the automated replay of stolen email-and-password pairs against unrelated sites. An attacker takes a list of millions of credentials from one breach and tries them against banks, retailers, email providers and social platforms. No guessing is involved. They are just checking whether you used the same password twice.

Success rates per site are tiny, usually a fraction of a percent, and at scale that hardly matters. Ten million credentials at a 0.1% hit rate still gives an attacker ten thousand working accounts. The economics are firmly on their side. The whole thing collapses the moment your passwords are unique.

This is also why the age of a breach matters less than people assume. A password you set in 2016 and still use somewhere is exactly as valuable to an attacker today as one stolen last week.

How passwords are stored, and what that changes

Breach reports often note whether passwords were hashed. Hashing converts a password into a fixed-length value that cannot be reversed directly, so a breach of properly hashed passwords is considerably less damaging than one of plain text.

The word 'properly' is doing a lot of work there. Older or badly chosen algorithms can be cracked at enormous speed on consumer graphics hardware, so common passwords fall almost immediately. MD5 and SHA-1 are the usual culprits, particularly without a per-user salt. Algorithms designed for the job, such as bcrypt, scrypt and Argon2, are deliberately slow and memory-hungry, which makes mass cracking impractical.

You will rarely be told which was used. The safe assumption is that any password exposed in a breach should be considered known, and changed everywhere it was used.

What this tool checks, and what it does not

This check queries XposedOrNot, a free public breach-data service, and returns the breaches it holds for the address you enter, along with the categories of data each one exposed. It is a lookup against an existing catalogue.

It is not a dark web scan, whatever similar tools advertise. Nobody crawls the dark web on demand for a free web form. The phrase describes a search of already-collected data, and it is worth being suspicious of any service that implies otherwise. Private marketplaces, closed forums and breaches that were never published sit outside the scope of every service of this kind, paid or free.

XposedOrNot's dataset is also smaller than Have I Been Pwned, the best-known public breach index. A clean result here is weaker evidence than a clean result there, so checking both is worth the extra minute. All a clean result means is that your address was not found in the breaches this service holds. It does not mean it has never been exposed. A positive result is reliable information. A negative one is the absence of information.

What to do about a positive result

Start with the affected account. Change its password to something unique, then check whether anything in its settings has been altered. Recovery email, forwarding rules, connected apps and payment details are the usual targets, because an attacker with access tends to plant a way back in before doing anything visible.

Then deal with reuse, which is the part that actually matters. Every other account sharing that password is exposed, including the ones you have forgotten about. Work through whatever would hurt most to lose. Email comes first, because it can reset everything else, then banking, then anything holding payment details.

Turn on two-factor authentication wherever it is offered. An authenticator app or a hardware key beats SMS, which is vulnerable to SIM-swap attacks, though SMS is still far better than nothing. Two-factor is what stops a stolen password being enough on its own.

Finally, stop trying to remember unique passwords. A password manager is the only approach that scales past a handful of accounts, and it removes the temptation that causes the problem in the first place.

// MethodologyWhat this tool tests, which sources it uses, and where it stops being reliable.

// Frequently asked questions

Does this search the entire dark web?
No. It checks your address against already-catalogued public breach data via the XposedOrNot service. No free tool crawls the dark web on demand, and private marketplaces and unpublished breaches are outside the scope of every service of this kind.
Do you store my email address?
No. The address is passed to the breach-lookup service to run the check and is not saved by Vuther.
My email is in a breach. What should I do?
Change the password on the affected account, then change it anywhere you reused it. Start with your email account, because it can reset the others. Check the affected account for altered recovery addresses, forwarding rules or connected apps, and turn on two-factor authentication.
The breach was years ago. Does it still matter?
Yes, if you still use that password anywhere. Attackers replay old credential lists indefinitely, and a password from 2016 that you never changed is as useful to them as one stolen last week.
What does it mean if the passwords were hashed?
Hashing makes passwords harder to recover, but not equally so. Weak algorithms like unsalted MD5 or SHA-1 fall quickly to modern hardware; bcrypt, scrypt and Argon2 are designed to resist it. You are rarely told which was used, so treat any exposed password as known.
Nothing found. Am I safe?
It means your address was not found in the breaches this service holds. XposedOrNot indexes fewer breaches than Have I Been Pwned, so a second check against that larger catalogue is worth doing before you treat a clean result as settled. No catalogue is complete. Unique passwords and two-factor authentication protect you whatever any check returns.
How often should I check?
Every few months, and whenever you hear about a breach at a service you use. New datasets are catalogued continuously, so a check is a snapshot rather than a standing all-clear.
What kinds of data get exposed in breaches?
Most commonly email addresses, passwords, usernames, names, phone numbers and IP addresses. Depending on the service, breaches have also exposed dates of birth, physical addresses, security questions, partial payment details and private messages.

// Related tools

// Part ofAccount & Password Security