|
Message-ID: <55596313.3090805@gmail.com> Date: Mon, 18 May 2015 05:57:07 +0200 From: Marek Wrzosek <marek.wrzosek@...il.com> To: john-users@...ts.openwall.com Subject: Re: Advise on best approach (truecrypt pw based on pdf file) W dniu 17.05.2015 o 21:37, Demian Smith pisze: > Hi Marek, > thanks for the support - the wordlist is not that big: the source was > 102 kb, the resulting file is 105 MB. I am running > Just one more thing. If you are 100% sure that this password is beginning with capital and is only 5-12 letters long then "walking interval" filter will be: awk '{for (i = 1; i <= length($1); i++){for (j=i+4;j<i+12&&j<=length($1);j++){print substr($1, i, j-i+1);}}}'|grep '^[A-Z]' The resulting file will be a lot shorter than 105 MB from previous awk-only command. Best Regards -- Marek Wrzosek marek.wrzosek@...il.com
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.