Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Hash type list modification
12-01-2010, 11:46 PM
Post: #1
Hash type list modification
Would be nice to show the hash type list as they actually are rather than a much longer list of software apps of which most are md5($pass). Can be rather annoying Sad maybe have an option so users can select perference?
Find all posts by this user
12-03-2010, 10:46 AM
Post: #2
RE: Hash type list modification
i am not sure if i understood you request correctly. do you mean something like this?

md5(md5($pass)) [PHP] - used with e107.
md5(md5($pass).$salt) [PHP] - used with vBulletin 3.x.x.
md5(md5($salt).md5($pass)) [PHP] - used with IPB 2.x.x.
sha1($username.$pass) [PHP] - used with SMF 1.1.x.

if yes, its already done and is part of the hashcat-gui
Visit this user's website Find all posts by this user
12-07-2010, 04:33 PM
Post: #3
RE: Hash type list modification
Yeah, I know there are at the top but all the other below just clog up the list, rather not see them at all. Could you add a few more algos as well:

md5(sha1($pass))
sha1(md5($pass))
DES(Unix) - Good one this for .htpasswd files
sha256($pass)
sha384($pass)
sha512($pass)
Find all posts by this user
12-07-2010, 04:41 PM
Post: #4
RE: Hash type list modification
no:

md5(sha1($pass))
sha1(md5($pass))
DES(Unix) - Good one this for .htpasswd files

maybe:

sha384($pass)

yes:

sha256($pass)
sha512($pass)
Visit this user's website Find all posts by this user