hashcat Forum

Full Version: How to hashcat crack password?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to hashcat crack password?
Match each password for each array of dictionaries or password match with each word in the dictionary????
Is it harder to read the wiki than to sign up for a new account and make a new thread?

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

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