Password Strength

Free tool: Check how long it would take to crack your password

The longer and more complex your password, the harder it will be for cyber-criminals to crack it through brute force.

What’s that? It’s where automated software tries thousands of variations of passwords, until it finds the right one.

Check your password now. Enter it below and you’ll see how long it would take criminals to crack it. The longer, the better.

// Define criteria for password strength
var strongRegex = new RegExp("^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})");
var mediumRegex = new RegExp("^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{6,})");

if (strongRegex.test(password)) {
strengthText.innerHTML = "Strong";
strengthText.style.color = "green";
} else if (mediumRegex.test(password)) {
strengthText.innerHTML = "Medium";
strengthText.style.color = "orange";
} else {
strengthText.innerHTML = "Weak";
strengthText.style.color = "red";
}
}

Your password is safe and is not sent across the internet.

If you need a better password, click Generate Password and we’ll create a random one for you. Make sure you use a password manager to remember it.