Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Mon, 29 Apr 2013 19:20:23 +0200
From: magnum <john.magnum@...hmail.com>
To: john-dev@...ts.openwall.com
Subject: Re: Node support

On 29 Apr, 2013, at 17:20 , magnum <john.magnum@...hmail.com> wrote:
> On 29 Apr, 2013, at 13:52 , Solar Designer <solar@...nwall.com> wrote:
>> On Mon, Apr 29, 2013 at 12:15:11PM +0200, magnum wrote:
>>> On 29 Apr, 2013, at 11:11 , Solar Designer <solar@...nwall.com> wrote:
>>>> I've just pushed out my --node support for wordlist mode, both with and
>>>> without rules.  The switching to distributing words from distributing
>>>> rules is smarter than it was in jumbo (for MPI) and than it was in the
>>>> contest edition, yet the code is simple (actually readable, unlike
>>>> jumbo's).  You may try merging this into jumbo (difficult to get it
>>>> right due to the awful state of wordlist.c in jumbo).
>>> 
>>> Well this will keep me busy for some time :-P
>> 
>> There was a nasty bug in my code, now fixed (commit message "Corrected
>> the initial skipping of other nodes' lines when restoring a session").
> 
> I think I see a bug with -stdin that exist in core too.

Trying to establish the problem in core. Actually the same problem is seen with --wordlist too, which makes sense because core uses mostly the same code for wordlist/stdin. I have only seen problem with -stdin in bleeding.


../run/john master.dummy -form:dummy -wo:../run/password.lst
11994 cracked

cat ../run/password.lst | ../run/john master.dummy -form:dummy -stdin
11994 cracked

../run/john master.dummy -form:dummy -wo:../run/password.lst -ru
87841 cracked

for i in 5-6 1-3 7 4; do
	../run/john master.dummy -form:dummy -wo:../run/password.lst -node=$i/7 -ru
done
87841 cracked

for i in 5-6 1-3 7 4; do
	cat ../run/password.lst | ../run/john master.dummy -form:dummy -stdin -node=$i/7
done
6921 cracked

for i in 5-6 1-3 7 4; do
	../run/john master.dummy -form:dummy -wo:../run/password.lst -node=$i/7
done
6921 cracked


The last two should crack 11994 like the first two. So bug only shows with nodes and without rules - but regardless of input mode.

magnum


Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.