Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date: 30 Jul 2006 17:22:27 -0000
From: madfran <madfran@....alias.net>
To: john-users@...ts.openwall.com
Cc:
Subject: More problems with rules and Charset for french language

Hi,...

I am trying to guest the second half of a LM hash.
The password contains french characters.
I know some characters. For example,
First character   : S
Second character  : T
Third character   : R
Forth character   : unknow
Fifth character   : unknow
Sixth character   : O
Seventh character : R


I build the john.ini with the following instructions,


##################################################################
# A cracker for some FRENCH characters
##################################################################

[Incremental:french]
File = french.chr
MaxLen = 7

[List.External:french]
int length;

void init()
{
	word[0] = 0x20 - 1;		// Start with " "
	word[length = 1] = 0;
}

void filter()
{
	word[6] = 'R';
	word[5] = 'O';
	word[4] = word[1];
	word[3] = word[0];
	word[2] = 'R';
	word[1] = 'T';
	word[0] = 'S';
}


void generate()
{
	int i;

	i = length - 1;			// Start from the last character
	while (++word[i] > 0xff)	// Try to increase it
	if (i)				// Overflow here, any more positions?
		word[i--] = 0x20;	// Yes, move to the left, and repeat
	else				// No
	if (length < 8) {
		word[i = ++length] = 0;	// Switch to the next length
		while (i--)
			word[i] = 0x20;
		return;
	} else {
		word = 0; return;	// We're done
	}
}

***************************************************************************

But when I tray to use this external mode I obtain this message,

C:\john\john-test-03>john --external=french hash-pims.txt
Loaded 1 password hash (NT LM DES [64/64 BS MMX])
guesses: 0  time: 0:00:00:04  c/s: 1760K  trying: STRTTOR - STRTTOR
guesses: 0  time: 0:00:00:05  c/s: 1791K  trying: STRTTOR - STRTTOR
guesses: 0  time: 0:00:00:06  c/s: 1813K  trying: STRTTOR - STRTTOR
guesses: 0  time: 0:00:00:09  c/s: 1841K  trying: STRTTOR - STRTTOR
Session aborted


Why always john tray always the same pass "STRTTOR" ?
Why he never stop ?

madfran

-- 
To unsubscribe, e-mail john-users-unsubscribe@...ts.openwall.com and reply
to the automated confirmation request that will be sent to you.

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.