|
Message-ID: <20100327171239.GA15113@openwall.com> Date: Sat, 27 Mar 2010 20:12:39 +0300 From: Solar Designer <solar@...nwall.com> To: john-users@...ts.openwall.com Subject: Re: insert 2 letters from start to end of word. On Sat, Mar 27, 2010 at 05:52:13PM +0100, websiteaccess@...il.com wrote: > With the following rules A[0-9A-Z],th, [...] > As you can see even when the end of word is reached, the rule continue > to suffix both words with 'th'. > > How can I do ? > I just want : test -> thtest -> tethst -----> testth > and > maximus -> thmaximus -> mthaximus -> mathximus -----> maximusth > > This rules must work for each word found in my wordlist (each word has > a different length of course). You can use: >\r[00-9A-Y] A\p0[0-9A-Z]"th" This will avoid producing the duplicates, however it will make JtR "freeze" for a while when it is going through the rules that require words longer than those actually found in your wordlist. So you may want to use fewer rules, supporting not-so-long words only: >\r[00-9A-C] A\p0[0-9A-D]"th" 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.