Is this possible?
#1
function udb_hash($buf) { 
    $length=strlen($buf); 
    $s1 = 1; 
    $s2 = 0; 
    for($n=0; $n<$length; $n++) 
    { 
       $s1 = $s1 + ord($buf[$n]) % 65521; 
       $s2 = $s2 + $s1 % 65521; 

   return ($s2 << 16) + $s1; 


Is it possible to crack a hash with this algorithm since it isn't implemented with hashcat? Or would I need to make a request?


Messages In This Thread
Is this possible? - by chickin - 11-12-2016, 11:06 AM
RE: Is this possible? - by bigblacknose - 11-12-2016, 11:25 PM
RE: Is this possible? - by chickin - 11-13-2016, 05:33 AM
RE: Is this possible? - by atom - 11-13-2016, 10:05 PM
RE: Is this possible? - by chickin - 11-13-2016, 10:31 PM