Salted SHA-1 found by Lite but not by Plus
#6
Here is the php version of it, if someone cares...

Code:
<?php
$hash = '6dd505428c250231ed5e0bc06288138d18d6eb25';
$res = '';

if (strlen($hash) % 8 == 0)
{
    $tab = str_split($hash, 8);
    foreach ($tab AS $chunk)
        $res .= join('', array_reverse(str_split($chunk, 2)));
}

echo $res;
?>


Messages In This Thread
RE: Salted SHA-1 found by Lite but not by Plus - by qweasd - 07-03-2013, 03:28 AM