> -Original Message-
> From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]
> Sent: Sunday, July 31, 2005 8:34 AM
> To: CF-Talk
> Subject: Re: random password generator
>
> > Does anyone suggest a good random password generator for CFMX7?
> >
> >
> Does anyone suggest a good random password generator for CFMX7?
>
> Many of the ones on the macromedia exchange are for much older versions of
ColdFusion.
Old pass generators should be just fine.
For what's worth, I have one available as CFC:
http://www.massimocorner.com/
http://tutorial176.easycfm.com/
-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 27, 2005 9:57 AM
To: CF-Talk
Subject: Re: random password generator
>>Many of the ones on the macromedia exchange are for much older
versions of ColdFusio
>>Many of the ones on the macromedia exchange are for much older
versions of ColdFusion.
Is it eally a reason they are not good anymore?.
--
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam t
Here's an easy one for you. Top part is the tag call and the bottom
part is the tag itself. Makes up a password and strips out commonly
goofed letters ('S' vs '5' etc.). 18 lines of code. Variable pwd
length. Have at it.
#variables.myPwd#
> Umm... how much would this have changed from one version to the next?
> You want to generate a random string of ~5-8 letters and numbers
> right? What new features do you want it to use exactly? XML? CFC's?
> Asynchronous CFML gateway?
Now now Isaac...be nice ;-)
Bryan Stevenson B.Comm.
VP & Di
> Does anyone suggest a good random password generator for
> CFMX7?
> Many of the ones on the macromedia exchange are for much
> older versions of ColdFusion.
Umm... how much would this have changed from one version to the next?
You want to generate a random string of ~5-8 letters
CF version shouldn't matter...it's just a random string generation ;-)
Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com
Does anyone suggest a good random password generator for CFMX7?
Many of the ones on the macromedia exchange are for much older versions of
ColdFusion.
Thanks, Mike
~|
Logware (www.logware.us): a new and convenient web-based
Cheers,
SK> Stuart
SK> -Original Message-
SK> From: Critter [mailto:[EMAIL PROTECTED]
SK> Sent: 01 February 2004 18:37
SK> To: CF-Talk
SK> Subject: Re: Random Password
SK> oi Stuart!!
SK> have a gander at www.cflib.org there are a few results for a "password
lk
Subject: Random Password
Hi guys,
I'm trying to work out how to come up with a random password of 8
alpha-numeric characters. I have done it before but a hell of a long
time ago and have checked all my old code but can't find it.
Would I have to create an array?
It won't be th
[mailto:[EMAIL PROTECTED]
Sent: 01 February 2004 18:37
To: CF-Talk
Subject: Re: Random Password
oi Stuart!!
have a gander at www.cflib.org there are a few results for a "password"
search
/crit
--
=-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son
48 PM, you wrote:
SK> Hi guys,
SK> I'm trying to work out how to come up with a random password of 8
SK> alpha-numeric characters. I have done it before but a hell of a long
SK> time ago and have checked all my old code but can't find it.
SK> Would I have to create
Hi guys,
I'm trying to work out how to come up with a random password of 8
alpha-numeric characters. I have done it before but a hell of a long
time ago and have checked all my old code but can't find it.
Would I have to create an array?
It won't be their permanent passwo
oops, wrong subject line...
Hi, I posted this to another list with little success :
does anyone know of a sql script which generates a random password for use
in an sp? this is to work on SQL 7 so UDF are not an option
utes.CharStart),Asc(Attributes.CharEnd)));
}
SetVariable("Caller.#Attributes.OutputVar#",result);
P.
-Original Message-
From: Chris Martin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 03, 2001 5:38 PM
To: CF-Talk
Subject: RE: Random Password
Here's one I got off thi
adouin [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 03, 2001 11:24 AM
> To: CF-Talk
> Subject: Random Password
>
>
> All-
>
> Sorry I am pressed for time today, but does any one have script for
> generating random passwords?
>
> CB
>
~~~
: Thursday, May 03, 2001 3:08 PM
Subject: RE: Random Password
> Here's one I use to create a random numeric password...
>
>
> hth
>
> -Original Message-
> From: Chris Badouin [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 03, 2001 11:24 AM
> To: CF-Talk
password = "" ;
for (c=1; c le 7; c=c+1)
{password = password & chr(randRange(65,90)) ; }
password = password & randRange(1000,) ;
-Original Message-
From: Chris Badouin [mailto:[EMAIL PROTECTED]]
Sent: Friday, 4 May 2001 02:24
To: CF-Talk
Subject: Random Passwo
0,)#";
PASSWORD: #password#
it will generate a password with 7 random letter and a 4 digit number.
-Original Message-----
From: Chris Badouin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 03, 2001 12:24 PM
To: CF-Talk
Subject: Random Password
This should work:
This will generate a random 8 character password if you need a different
length then just change 'to' in the cfloop tag.
-Original Message-
From: Chris Badouin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 03, 2001 9:24 AM
To: CF-Talk
Subje
Here's one I use to create a random numeric password...
hth
-Original Message-
From: Chris Badouin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 03, 2001 11:24 AM
To: CF-Talk
Subject: Random Password
All-
Sorry I am pressed for time today, but does any one have scrip
there are some tags in allaire's tag gallery that do that.
-Original Message-
From: Chris Badouin [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 03, 2001 9:24 AM
To: CF-Talk
Subject: Random Password
All-
Sorry I am pressed for time today, but does any one have script for
gener
All-
Sorry I am pressed for time today, but does any one have script for
generating random passwords?
CB
~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.m
> Why define the alphabet? Just use decimal values for the asci char set.
So, just because I'm bored, in the unrolled loop I created I change the
alphabet to Raymond's chr:
The speed increase was fairly slight:
Original code (executed 1000 times): 9994 ms (average)
Unrolled code (executed 1
: CF-Talk
Subject: Code snippet - random password generator
This script generates a random word 7 letters long plus 4 digits long.
Example code:
PASSWORD: #password#
~~
Structure your ColdFusion code with Fusebox. Get the
> This script generates a random word 7 letters long plus 4 digits long.
Just for the fun of it I unrolled the loop to see what the speed difference
would be.
Original code (executed 1000 times): 9994 ms (average)
Unrolled code (executed 1000 times): 1993 ms (average)
Here's what the unrolled c
This script generates a random word 7 letters long plus 4 digits long.
Example code:
PASSWORD: #password#
~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
28 matches
Mail list logo