OT: Java Script Question

2000-09-07 Thread Double Down
I would like to flash a java script alert box saying that a login name is already in use. This will happen on the submit and it will go to the action page to check the db. My question is can I have the alert box pop up on the form page so the person does not have to go back and re-enter all of the

Re: OT: Java Script Question

2000-09-07 Thread Peter Theobald
At 01:25 PM 9/7/00 -0700, Double Down wrote: >I would like to flash a java script alert box saying that a login name is >already in use. This will happen on the submit and it

RE: OT: Java Script Question

2000-09-08 Thread Courtney Payne
riginal Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 07, 2000 11:07 PM To: [EMAIL PROTECTED]; House Of Fusion Subject: Re: OT: Java Script Question <!-- alert("Username taken, please try another") history.back(1)

Re: OT: Java Script Question

2000-09-08 Thread JustinMacCarthy
> your database beforehand and (using WDDX) >make it available to your JS so > that you can do the check right there on the client, >without having to hit the problem with that is anyone can get a list of your usernames just by looking at the source ~Justin MacCarthy --

RE: OT: Java Script Question

2000-09-08 Thread Courtney Payne
t: Friday, September 08, 2000 8:09 AM To: [EMAIL PROTECTED] Subject: Re: OT: Java Script Question > your database beforehand and (using WDDX) >make it available to your JS so > that you can do the check right there on the client, >without having to hit the problem with that is anyone

Re: OT: Java Script Question

2000-09-08 Thread Fred T. Sanders
- From: "Courtney Payne" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 08, 2000 8:05 AM Subject: RE: OT: Java Script Question > DD, > > Just as a side note, you'll *have* to go back to the server (ie. your action > page) to query and check

Re: OT: Java Script Question

2000-09-08 Thread JustinMacCarthy
l Message- > From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 08, 2000 8:09 AM > To: [EMAIL PROTECTED] > Subject: Re: OT: Java Script Question > > > > your database beforehand and (using WDDX) >make it available to your JS so > > that yo

RE: OT: Java Script Question

2000-09-08 Thread Courtney Payne
ers [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 8:43 AM To: [EMAIL PROTECTED] Subject: Re: OT: Java Script Question Courtney, I hope your not suggesting they run a query of usernames and passwords, or even just the user names for that matter. They would be viewable in source. You

Re: OT: Java Script Question

2000-09-08 Thread JustinMacCarthy
Just as example , I used to work in an ISP with 60,000 user accounts. I ran a password cracker ,with a very average size dictionary , against my pwd file, 99% of the passwords were found in one hour. ~Justin > You might say "well its just usernames big deal". Okay I've now got a list > of us

Re: OT: Java Script Question

2000-09-12 Thread paul smith
How many of the 99% had punctuation within the PW? best, paul At 02:27 PM 9/8/00 +0100, you wrote: >Just as example , I used to work in an ISP with 60,000 user accounts. I ran >a password cracker ,with a very average size dictionary , against my pwd >file, 99% of the passwords were found in one

RE: OT: Java Script Question

2000-09-12 Thread Pete Freitag
- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 12, 2000 1:17 PM To: [EMAIL PROTECTED] Subject: Re: OT: Java Script Question How many of the 99% had punctuation within the PW? best, paul At 02:27 PM 9/8/00 +0100, you wrote: >Just as example , I used to work in an

RE: OT: Java Script Question

2000-09-12 Thread Dan O'Keefe
Point Technologies [EMAIL PROTECTED] 954.675.3115 |-Original Message- |From: Pete Freitag [mailto:[EMAIL PROTECTED]] |Sent: Tuesday, September 12, 2000 1:14 PM |To: [EMAIL PROTECTED] |Subject: RE: OT: Java Script Question | | |Actually using special characters in your passwords !@#

RE: OT: Java Script Question

2000-09-12 Thread Jeremy Allen
iginal Message- From: Courtney Payne [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 8:25 AM To: '[EMAIL PROTECTED]' Subject: RE: OT: Java Script Question This is true. However, I wouldn't think usernames would be considered sensitive info. Courtney E. Payne, Dev

RE: OT: Java Script Question

2000-09-12 Thread paul smith
Yes, I include special chars within passwords all the time, even on passwords without punctuation that are not in any dictionary. best, paul At 02:13 PM 9/12/00 -0400, you wrote: >Actually using special characters in your passwords !@#, etc increases the >time it takes to crack exponentially.