How to hashcat crack password?
#4
Code:
h = hash algorithm
p = candidate password
T = target hash

foreach p in candidates {
    if ( h(p) == T ) {
        print T + ":" + p
        return
    }
}


Messages In This Thread
How to hashcat crack password? - by ngocsang - 12-08-2014, 03:28 AM
RE: How to hashcat crack password? - by coolbry95 - 12-08-2014, 03:45 AM
RE: How to hashcat crack password? - by bsec - 12-08-2014, 06:42 PM
RE: How to hashcat crack password? - by epixoip - 12-08-2014, 11:26 PM