--stdout combinator attack
#1
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?
#2
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.
~
#3
alternatively you can use combinator from hashcat-utils