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
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..
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]
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
--
> 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
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]
IS there a perl password generator out there?
Mike
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
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.
-
>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_
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.
17 matches
Mail list logo