Posts: 2
Threads: 1
Joined: May 2015
05-10-2015, 09:06 AM
Hi , I am wondering how to calc the following hash type
$pass = (md5(md5($pass).$salt) ?
I saw the readme file , there is only
md5($salt.md5($pass))
Posts: 2,267
Threads: 16
Joined: Feb 2013
05-10-2015, 10:42 AM
(This post was last modified: 05-10-2015, 10:43 AM by philsmd.)
This is the algorithm used by the forum software/board VBulletin.
Hence, depending on the salt length, you either need to use -m 2611 (very short salts) or -m 2711 (longer salts).
For examples see
https://hashcat.net/wiki/doku.php?id=example_hashes
Posts: 2
Threads: 1
Joined: May 2015
(05-10-2015, 10:42 AM)philsmd Wrote: This is the algorithm used by the forum software/board VBulletin.
Hence, depending on the salt length, you either need to use -m 2611 (very short salts) or -m 2711 (longer salts).
For examples see https://hashcat.net/wiki/doku.php?id=example_hashes
Hi ,thanks for the answer , I got it.
Posts: 1
Threads: 0
Joined: Aug 2015
Is there a way to ignore the static salt length of 30 chars? My salt got 32 characters and therefore i get a line length exception when using -m 2711
Posts: 5,185
Threads: 230
Joined: Apr 2010