Posts: 23
Threads: 11
Joined: Jan 2018
I'd like to use hashcat's blinding speed to generate password candidates from 2 dictionary files. When I say generate, I mean print out to stdout. I tried using the --stdout flag but i dont think this works with combinator? Am I wrong, or if im right, Could this be a new feature please?
Posts: 930
Threads: 4
Joined: Jan 2015
02-11-2018, 08:39 AM
(This post was last modified: 02-11-2018, 08:41 AM by royce.)
Syntax example? Works for me:
Code:
$ cat test.list
password
rockyou
linkedin
hashcat
hunter2
$ hashcat -a 1 test.list test.list --stdout
passwordpassword
passwordrockyou
rockyoupassword
rockyourockyou
linkedinpassword
linkedinrockyou
hashcatpassword
hashcatrockyou
hunter2password
hunter2rockyou
passwordlinkedin
passwordhashcat
rockyoulinkedin
rockyouhashcat
linkedinlinkedin
linkedinhashcat
hashcatlinkedin
hashcathashcat
hunter2linkedin
hunter2hashcat
passwordhunter2
rockyouhunter2
linkedinhunter2
hashcathunter2
hunter2hunter2
And if you're using hashcat just to generate candidates to feed to something else, you might check out combinator from hashcat-utils instead.
~
Posts: 2,301
Threads: 11
Joined: Jul 2010
alternatively you can use combinator from hashcat-utils