Posts: 5
Threads: 3
Joined: May 2017
05-18-2017, 08:30 PM
(This post was last modified: 05-18-2017, 08:31 PM by xkwas.)
Here is the following scenario: There are multiple dictionaries (straight mode), but I want to apply rules.rule only to the last one (numbers.txt), therefore I save a lot of time and computing power.
Dictionaries:
D:\animals.txt
D:\names.txt
D:\words.txt
D:\numbers.txt <= Can rules.rule apply only to that dictionary?
Thanks
Posts: 346
Threads: 3
Joined: May 2010
Posts: 16
Threads: 4
Joined: Mar 2017
05-18-2017, 11:23 PM
(This post was last modified: 05-18-2017, 11:26 PM by DDNK.)
Here's an idea, probably not the best.
Take Numbers.txt and perform --stdout using Rules.rule
Then use the new outputted dictionary instead of "Numbers.txt"
Here's how I personally perform the command,
Hashcat64.exe --stdout c:/Hashcat/wordlist.txt -r huge.rule > newdic.txt
For you it'd look something like this (I could be wrong).
Hashcat64.exe --stdout D:\numbers.txt -r Rules.rule > filenamehere.txt
Posts: 5
Threads: 3
Joined: May 2017
hashcat ............ && hashcat ........
(Windows)
That's what I was thinking, but if there is a nicer solution - that would be awesome.
Posts: 5,185
Threads: 230
Joined: Apr 2010
What's wrong with that solutions, it's pretty good use of hashcat. You can improve it by using | instead of > to not write the data to disc but to pipe it to the 2nd process.