Posts: 3
Threads: 2
Joined: Dec 2014
How to hashcat crack password?
Match each password for each array of dictionaries or password match with each word in the dictionary????
Posts: 117
Threads: 0
Joined: Nov 2013
12-08-2014, 03:45 AM
(This post was last modified: 12-08-2014, 03:46 AM by coolbry95.)
Is it harder to read the wiki than to sign up for a new account and make a new thread?
Read the wiki.
Posts: 21
Threads: 3
Joined: Oct 2014
12-08-2014, 06:42 PM
(This post was last modified: 12-08-2014, 06:43 PM by bsec.)
(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"
Posts: 2,936
Threads: 12
Joined: May 2012
Code:
h = hash algorithm
p = candidate password
T = target hash
foreach p in candidates {
if ( h(p) == T ) {
print T + ":" + p
return
}
}