> -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/coldfusion/cfc/tmt_pass_
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 and numbers
rig
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
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
Stuart...
Check out some of the UDFs at cflib.org.
This is one of them
http://www.cflib.org/udf.cfm?ID=258
Search on "Password" and you will see some others.
Mike
_
From: Stuart Kidd [mailto:[EMAIL PROTECTED]
Sent: Sunday, February 01, 2004 12:45 PM
To: CF-Talk
Subject: Ra
[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
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 in the US ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-=
Sunday, February 1, 2004, 12:44:48 PM, you wrot
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
I've used something like that too, wanting to keep it a consistent number
of digits (and you should seed the random with something prior):
> Here's one I use to create a random numeric password...
>
>
> hth
>
> -Original Message-
> From: Chris Badouin [mailto:[EMAIL PROTECTED]]
> Se
: 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 Password
All-
Sorry I am
Here's one I got off this list a while ago. Props to whoever wrote it,
because its helped me out a few times.
random_word = Mid("ABCDEFGHIJKLMNOPQRSTUVWXYZ", RandRange(1,26), 1);
random_word = random_word & Mid("ABCDEFGHIJKLMNOPQRSTUVWXYZ",
RandRange(1,26), 1);
random_wo
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
Subject: Random Pass
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 script for
generating
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
generating ran
20 matches
Mail list logo