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))
(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.
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