Posts: 105
Threads: 23
Joined: Apr 2012
09-07-2022, 08:22 PM
(This post was last modified: 09-07-2022, 08:23 PM by pragmatic.)
The more I use the association attack the more I like it. It's incredibly powerful in many real-world circumstances and I'm finding myself relying on it more and more.
Given that value, are there any plans to add support for it to work with potfiles?
If not, at the least, I would suggest documenting clearly that it doesn't work with them now as that was a very surprising divergence in behavior.
From user_options.c:
Code:
// association limitations
if (user_options->attack_mode == ATTACK_MODE_ASSOCIATION)
{
user_options->potfile_disable = true;
}
Posts: 930
Threads: 4
Joined: Jan 2015
Seems like a good idea to explicitly warn the user. Could you create a GitHub feature request for this?
~
Posts: 407
Threads: 2
Joined: Dec 2015
Posts: 105
Threads: 23
Joined: Apr 2012
Added another as well to request supporting pot files as that would obviously be the ideal solution.
Call me an optimist. 😀
Posts: 889
Threads: 15
Joined: Sep 2017
09-08-2022, 01:07 PM
(This post was last modified: 09-08-2022, 01:08 PM by Snoopy.)
just for understanding why association attack dont work with potfiles? as far as i understand, assoc just removes the loop for testing all given salts with all passwordcandidates instead there is a 1:1 hash : salt to password/hint combination
so hashcat still test hashmode(pass/hint : salt) for one given hash : salt
so there should be no difference in hash : salt : pass behavior in the potfile
Posts: 407
Threads: 2
Joined: Dec 2015
09-08-2022, 06:37 PM
(This post was last modified: 09-08-2022, 06:37 PM by Chick3nman.
Edit Reason: typo
)
The reason it doesn't allow use of the potfile now is that the potfile is NOT an outfile. It's a file that hashcat uses to remove previously cracked hashes from it's current run. We currently can't support the removal of hashes, salts, or candidates in assoc attack mode due to how hashes/salts/candidates are aligned. Because of that, we can't run the potfile check during startup and we can't easily avoid duplication into the potfile when a hash is cracked in more than one run. Assoc Attack mode does support outfiles currently, so you can save cracks to a file just fine. It just doesn't support the potfile.