Skip to content

Instantly share code, notes, and snippets.

@AD7six
Created September 13, 2011 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AD7six/1214220 to your computer and use it in GitHub Desktop.
Save AD7six/1214220 to your computer and use it in GitHub Desktop.
how long does it take to crack a salted sha1 password based on the hash alone
assume the salt and password are comprised of 62 characters: a-zA-Z0-9
assume a 40 char salt
so the hashed string for a 6 letter password is 46 chars
62^46 = 2*10^82 permutations
at 700,000,000 passwords tried per second, you'd need 4*10^73 seconds to try all permutations
that's 1*10^66 years.
@jperras
Copy link

jperras commented Sep 13, 2011

Newer GPU-based methods can do ~2,300,000,000 SHA1 checks per second. http://www.golubev.com/hashgpu.htm

Still good enough, of course ;-).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment