hashcat Forum
How to hashcat crack password? - 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 hashcat crack password? (/thread-3884.html)



How to hashcat crack password? - ngocsang - 12-08-2014

How to hashcat crack password?
Match each password for each array of dictionaries or password match with each word in the dictionary????


RE: How to hashcat crack password? - coolbry95 - 12-08-2014

Is it harder to read the wiki than to sign up for a new account and make a new thread?

Read the wiki.


RE: How to hashcat crack password? - bsec - 12-08-2014

(12-08-2014, 03:45 AM)coolbry95 Wrote: Is it harder to read the wiki than to sign up for a new account and make a new thread?

Read the wiki.

I think it question is about the mechanisme (programming theory) on how hashcat crack password, not how to use hashcat to crack passwords :-)
"sorry for my english"


RE: How to hashcat crack password? - epixoip - 12-08-2014

Code:
h = hash algorithm
p = candidate password
T = target hash

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