How to hashcat crack password?
#1
How to hashcat crack password?
Match each password for each array of dictionaries or password match with each word in the dictionary????
#2
Is it harder to read the wiki than to sign up for a new account and make a new thread?

Read the wiki.
#3
(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"
#4
Code:
h = hash algorithm
p = candidate password
T = target hash

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