Re: Password generator (limit my dictionary to...)

2007-10-26 Thread John W . Krahn
On Sunday 21 October 2007 23:45, Michael Alipio wrote: > Hi, Hello, > I'm trying to create a dictionary file for my > bruteforce program. > > > I have a huge dictionary file and I want to trim it > down according the requirements. > > The output should be a dictionary file that is minimum > 6 cha

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Paul Lalli
On Oct 22, 2:18 pm, [EMAIL PROTECTED] (Jay Savage) wrote: > On 10/22/07, Paul Lalli <[EMAIL PROTECTED]> wrote: > > > On Oct 22, 2:45 am, [EMAIL PROTECTED] (Michael Alipio) wrote: > > > > The output should be a dictionary file that is minimum > > > 6 characters and maximum 15 characters with at leas

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Jay Savage
On 10/22/07, Paul Lalli <[EMAIL PROTECTED]> wrote: > On Oct 22, 2:45 am, [EMAIL PROTECTED] (Michael Alipio) wrote: > > > The output should be a dictionary file that is minimum > > 6 characters and maximum 15 characters with at least 4 > > letters and 2 numbers in it.. no special characters > > what

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Rob Dixon
Michael Alipio wrote: Here's what I came up with: #!/usr/bin/perl use warnings; use strict; my $wordlist = shift @ARGV; open INPUTFILE, "$wordlist" or die $!; while (){ # Find all words that are 6-15 characters with at least 2 digits and 4 letters that can appear anywhere next unless (

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Paul Lalli
On Oct 22, 7:56 am, [EMAIL PROTECTED] (Michael Alipio) wrote: > Here's what I came up with: /\b\w{6,15}\b\n/ && /.*(\d).*\d/ && /(.*([a-z]|[A-Z]).*){4}/) \b is a word boundary. It is simply true at spaces in between word characters and non-word characters. Your regexps do not at all preclude s

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Michael Alipio
Hi Paul, Here's what I came up with: #!/usr/bin/perl use warnings; use strict; my $wordlist = shift @ARGV; open INPUTFILE, "$wordlist" or die $!; while (){ # Find all words that are 6-15 characters with at least 2 digits and 4 letters that can appear anywhere next unless (/\b\w{6,15}\b\n/

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Paul Lalli
On Oct 22, 2:45 am, [EMAIL PROTECTED] (Michael Alipio) wrote: > The output should be a dictionary file that is minimum > 6 characters and maximum 15 characters with at least 4 > letters and 2 numbers in it.. no special characters > whatsoever.. This should be a simple regex but it's > been a while

Password generator (limit my dictionary to...)

2007-10-21 Thread Michael Alipio
Hi, I'm trying to create a dictionary file for my bruteforce program. I have a huge dictionary file and I want to trim it down according the requirements. The output should be a dictionary file that is minimum 6 characters and maximum 15 characters with at least 4 letters and 2 numbers in it..