hashcat Forum
Use rules on dicrionary - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Misc (https://hashcat.net/forum/forum-15.html)
+--- Forum: General Talk (https://hashcat.net/forum/forum-33.html)
+--- Thread: Use rules on dicrionary (/thread-6645.html)

Pages: 1 2


Use rules on dicrionary - xsoft - 06-15-2017

Hello,
really stupid and (probably) really simple question:

How to generate own dictionary based on rules?

I mean I have some directory (let's say rockyou.txt).
I and want to apply one rules file (like best64.rule).
And I want to make (big) directory rockyou+best64. How do I make so? (linux).

I found tons of tools, utils (https://hashcat.net/wiki/doku.php?id=hashcat_utils)
but non to like "play" directory+rules.

Please note that I dont want to use entire hashCat program (like with -1 option), but just small util that will apply "rules" to "txt file" .. and to pipe output somewhere else.

But I google for quite some time without success, thanks.


RE: Use rules on dicrionary - undeath - 06-15-2017

use hashcat --stdout


RE: Use rules on dicrionary - DDNK - 06-15-2017

Here's how I personally use it:
Hashcat64.exe --stdout hash.txt -r rockyou.rule > output.txt


RE: Use rules on dicrionary - xsoft - 06-15-2017

Yes. But can I do it WITHOUT hashcat? (I have raid-SSD fast computer without graphic card to do so. And just slower HDD on GPU PC). Therefor Im looking for stand-alone util and NOT to hashcat+param solution.

Otherwise I wouldnt ask and I would go there directly ( https://hashcat.net/wiki/doku.php?id=rule_based_attack )


RE: Use rules on dicrionary - undeath - 06-15-2017

What is the difference?


RE: Use rules on dicrionary - xsoft - 06-15-2017

You can't run hashCat there.


RE: Use rules on dicrionary - epixoip - 06-15-2017

Yes, he can. A GPU is not a requirement for hashcat.


RE: Use rules on dicrionary - xsoft - 06-16-2017

Uff, .. yeah, and also add --session xxx and million of another options to be able to run multiple instances ...
(I've just dont want to use a tank to do a simple script work).


RE: Use rules on dicrionary - xsoft - 06-16-2017

Ok one more question.
When used "hashcat --stdout test.txt ", then all test is writen BUT output is NOT interrupted.
I mean that pipe is still active and bash stuck at this point after writing all posibilities (but do NOW end).
like "cat test.txt" will do same output but it will end after that.

Code:
#hashcat --stdout test.txt
abd1
def2
efg3
^C
# cat test.txt
abd1
def2
efg3



RE: Use rules on dicrionary - undeath - 06-16-2017

cannot reproduce your problem with 3.5.0. hashcat terminates after printing for me.