How to calc (md5(md5($pwd).$salt) ?
#1
Question 
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))
#2
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
#3
(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. Smile
#4
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
#5
No, sorry