![]() |
How to calc (md5(md5($pwd).$salt) ? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: How to calc (md5(md5($pwd).$salt) ? (/thread-4349.html) |
How to calc (md5(md5($pwd).$salt) ? - guineapnx - 05-10-2015 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)) RE: How to calc (md5(md5($pwd).$salt) ? - philsmd - 05-10-2015 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 RE: How to calc (md5(md5($pwd).$salt) ? - guineapnx - 05-11-2015 (05-10-2015, 10:42 AM)philsmd Wrote: This is the algorithm used by the forum software/board VBulletin. Hi ,thanks for the answer , I got it. ![]() RE: How to calc (md5(md5($pwd).$salt) ? - mojorocky - 08-21-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 RE: How to calc (md5(md5($pwd).$salt) ? - atom - 08-23-2015 No, sorry |