nyxgeek-rules icon indicating copy to clipboard operation
nyxgeek-rules copied to clipboard

Rules idea? Alphanum of X chars?

Open rterwedo opened this issue 7 years ago • 2 comments

We have a situation where I am not finding any documentation on it. We are trying to scale across multiple machines/job by breaking up the keyspace by complexity. Its a 7 char completely random alphanum pwd.

We created a "wordlist" of 3844 "words" ie all combos of 2 alphanumeric chars (62 * 62 = 3844)

aa
ab
ac
..
08
09
00

In CONFIG the plan was to set min/max len = 7

For scaling we were planning on creating 3844 rules, where each rule grabbed one line (Line N) from the wordlist followed by any alphanum for the remaining chars. Something like below.

[Line N word]?x?x?x?x?x = Rule N

We can then at the command line, call each different rule, as a distinct job, with all machines setup as clones of each other.

  1. What would a rule like this look like (Rule N), I can only find references to Az or A0 (ie all wordlist items, or prepending in all the documentation and examples around the web)

Thanks!

rterwedo avatar Jan 11 '18 19:01 rterwedo

Well, 2 things here.

  1. maybe I'm not understanding what exactly you are trying to accomplish but, from my understanding, you are trying to attack a 7 char random password and split that job into "chunks" across multiple machines and for some reason, you have decided to take the wordlist+rules approach? If that is indeed what you are trying to do why not just use mask attacks or a hybrid attack? IE aa?l?l?l?l?l would result in aa plus 5 random characters. aaaaaaa -> aazzzzz

  2. programs exist that utilize a "cluster" environment and handles jobs across multiple machines including concurrently working on a single attack see > https://github.com/s3inlc/hashtopussy

winxp5421 avatar Jan 13 '18 18:01 winxp5421

Hi - Yes we actually ended up using masks when we stumbled upon that, considerably faster as well. Thanks!

rterwedo avatar Jan 13 '18 22:01 rterwedo

Cleaning up and closing.

nyxgeek avatar Sep 13 '22 07:09 nyxgeek