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..

Re: Password Generator

2002-02-10 Thread Elaine -HFB- Ashton
Mike [[EMAIL PROTECTED]] quoth: *>IS there a perl password generator out there? CPAN has a scripts section http://cpan.valueclick.com/scripts/admin/generate.random.passwords e. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Password Generator

2002-02-08 Thread Jason Purdy
There's a cool web password generator here: http://www.geodsoft.com/cgi-bin/password.pl Which has their software source available, too. Jason - Original Message - From: "Nikola Janceski" <[EMAIL PROTECTED]> To: "'Hanson, Robert'" <[E

Re: Password Generator

2002-02-08 Thread Michael Pratt
-- > From: Hanson, Robert [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 08, 2002 5:22 PM > To: 'Mike'; [EMAIL PROTECTED] > Subject: RE: Password Generator > > > To do what? Just generate random passwords? > > How about this. > > my @c = (a..z,A..Z

RE: Password Generator

2002-02-08 Thread Nikola Janceski
I think he wants to use the crypt() function. -Original Message- From: Hanson, Robert [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 5:22 PM To: 'Mike'; [EMAIL PROTECTED] Subject: RE: Password Generator To do what? Just generate random passwords? How about th

RE: Password Generator

2002-02-08 Thread Hanson, Robert
CTED] Subject: Password Generator IS there a perl password generator out there? Mike -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Password Generator

2002-02-08 Thread Mike
IS there a perl password generator out there? Mike -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: how to write a password generator

2001-09-13 Thread Sally
ECTED] Subject: how to write a password generator What resources can I look at to start writing a password generator from a complete newbie level of knowledge?? === Mike Singleton CCNA, CNE, MCSE Network Analyst (253) 272-1916 x1259 (253) 405-1968 (cellular) [EMAIL PROTECTED] DaVita Inc. -

Re: how to write a password generator

2001-09-13 Thread Morbus Iff
>What resources can I look at to start writing a password generator from a >complete newbie level of knowledge?? If you want to mimic Unix passwd, do something like: $seed = (some randomly generated bit of something); $plaintext_password = "password"; $encrypted_

how to write a password generator

2001-09-13 Thread Mike Singleton
What resources can I look at to start writing a password generator from a complete newbie level of knowledge?? === Mike Singleton CCNA, CNE, MCSE Network Analyst (253) 272-1916 x1259 (253) 405-1968 (cellular) [EMAIL PROTECTED] DaVita Inc.