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
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
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
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 (
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
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/
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
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]
MAIL PROTECTED]>; "'Mike'"
<[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, February 08, 2002 5:27 PM
Subject: RE: Password Generator
> I think he wants to use the crypt() function.
>
> -Original Message-
> From: Hanson, Robert [mailto:
--
> 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
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
To do what? Just generate random passwords?
How about this.
my @c = (a..z,A..Z,0..9,qw|! @ # $ % ^ & * ( ) [ ]|);
for (1..8) { print $c[int(rand(@c) + 1)]; }
Rob
-Original Message-
From: Mike [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 08, 2002 4:47 PM
To: [EMAIL PROTECTED]
Subj
12 matches
Mail list logo