Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date: Mon, 28 Apr 2014 05:55:09 +0400
From: Solar Designer <solar@...nwall.com>
To: john-users@...ts.openwall.com
Subject: Re: Many Problem's + Many Try's and no Soultion

On Mon, Apr 28, 2014 at 01:32:33AM +0000, wyss-adrian@...onet.ch wrote:
> i will try to dont forget to delete these AW: from the posts

Better yet, fix the threading as well.  Apparently, that webmail service
you're using is incapable of that, so use another.

> i am very secure
> f%w"m\ZB:nG4#53V8
> are inside the password

Possibly they are, but you had also identified the specific positions
for 14 out of 20 characters.  You appear to have recalled incorrectly,
and checking for other possible orderings of characters in the entire
20-character string is a lot more effort.  For example, if we know all
of the 20 characters and know each character appears exactly once, but
we have no idea what order they're in, then that keyspace is way too
large for us to search (thousands of years even with multiple GPUs).  So
we absolutely have to include some knowledge about positions of some of
the characters, yet you appear to have failed to recall that reliably.

I've tried removing the requirement for one of []{} by commenting out
these lines in AdrianReq:

	if (!(mask['[' >> 5] & (1 << ('[' & 0x1f))) &&
	    !(mask[']' >> 5] & (1 << (']' & 0x1f))) &&
	    !(mask['{' >> 5] & (1 << ('{' & 0x1f))) &&
	    !(mask['}' >> 5] & (1 << ('}' & 0x1f)))) {
		word = 0;
		return;
	}

This didn't help:

$ ./john -mask='[f%w][f%w][f%w]?a?a"m\\ZB:nG?a4#53V8' -ext=AdrianReq -dev=5 -form=sha512crypt-opencl pw-adrian
Device 5: GeForce GTX TITAN
Local worksize (LWS) 512, global worksize (GWS) 14336
Loaded 1 password hash (sha512crypt-opencl, crypt(3) $6$ [SHA512 OpenCL])
Press 'q' or Ctrl-C to abort, almost any other key for status
0g 0:00:04:17 DONE (2014-04-28 05:31) 0g/s 10239p/s 10239c/s 10239C/s w%f}<"m\ZB:nGq4#53V8..w%f~}"m\ZB:nG|4#53V8
Session completed

Alexander

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.