sleep function

Reply

Join Date: Aug 2008
Posts: 94
Reputation: designingamy is an unknown quantity at this point 
Solved Threads: 0
designingamy designingamy is offline Offline
Junior Poster in Training

Re: sleep function

 
0
  #31
Sep 11th, 2008
Or do you think this will just increase the amount of failed login attempts?

~Amy
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 1,160
Reputation: dickersonka will become famous soon enough dickersonka will become famous soon enough 
Solved Threads: 137
dickersonka dickersonka is offline Offline
Veteran Poster

Re: sleep function

 
0
  #32
Sep 11th, 2008
maybe at least enter the first letter of the county, lol hope they won't mess that up
Custom Application & Software Development
www.houseshark.net
Reply With Quote Quick reply to this message  
Join Date: Jun 2008
Posts: 849
Reputation: R0bb0b is on a distinguished road 
Solved Threads: 67
R0bb0b's Avatar
R0bb0b R0bb0b is offline Offline
Practically a Posting Shark

Re: sleep function

 
0
  #33
Sep 11th, 2008
Originally Posted by designingamy View Post
Or do you think this will just increase the amount of failed login attempts?

~Amy
Not if you drop a cookie on the users local machine. They would only have to provide that info the first time or any time they delete cookies.
“Be who you are and say what you feel because those who mind don't matter and those who matter don't mind.” - Dr. Seuss

-- The documentation is inevitable, you may get away with it for a little while but eventually you too will have to do the deed.
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 381
Reputation: langsor is an unknown quantity at this point 
Solved Threads: 33
langsor langsor is offline Offline
Posting Whiz

Re: sleep function

 
0
  #34
Sep 12th, 2008
Originally Posted by designingamy View Post
Or do you think this will just increase the amount of failed login attempts?

~Amy
Honestly, I do think this would increase failed login attempts ... you would be surprised, there are lots of bad typists out there and also people just in a hurry to plow through stuff like login forms, etc. I think you would frustrate people. The ideal goal is to provide security with as few obstacles to your visitor as possible.

Other ideas...
1. You could use zip-codes instead (just numbers and only 5 of them)
2. Or use area codes even (just 3 numbers unique to their location)
3. You could log and display the visitor's IP to remind them that they really are NOT anonymous
4. As mentioned, you could use cookies to remember some of the extended steps of a login

The greatest danger to people breaking security on your site is probably either...
1. Brute-force attacks -- trying lots of User-name/Password pairs
The best defense against this is enforcing strong passwords for your clients -- which is sure to annoy some people when they can't use the same password for every website so they can remember their passwords. And limiting the number of login attempts during a given timeframe or from a given IP (which is fraught with peril due to shared IP blocks)
2. Social-engineering -- getting people to voluntarily give up their login information in a web-forum (such as this) or other context and pretext.
This is the most common and likely scenario where someone gains access to other peoples information -- and there is nothing you can do about it. Maybe you could enforce changing the password regularly -- which is sure to annoy some people ... as above.

There is only so much you can do. If you have secure server-side scripts and secure SQL protocols and feel confident that a hacker can't access your server environment when not using a client login ... then implementing too many barriers to legitimate access to client resources will only make people discouraged with using your site.

Cheers
Last edited by langsor; Sep 12th, 2008 at 2:05 pm.
Google is the answer to all of your questions -- the trick is knowing what question to ask in your specific predicament.
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 381
Reputation: langsor is an unknown quantity at this point 
Solved Threads: 33
langsor langsor is offline Offline
Posting Whiz

Re: sleep function

 
0
  #35
Sep 12th, 2008
Here's one possible model you might employ ...

1. Visitor arrives at your site

2. Test for existing cookie
2a. if so => PASS
2b. if not => next step

3. Require user login
3a. new user registration
3b. limit login failed-attempts
3c. lost password retrieval via on-record email
3d. login success => next step

4. capture visitor IP (easy) and compare to visitor geographic location (*)
4a. matched user-location to visitor current location => PASS
4b. no-match => next step

5. Require user to enter geographic unique identifier of their primary residence (ZIP or Area Code)
5a. able to provide this => PASS
5b. unable to provide this => FAIL

This way you provide as many opportunities as possible to have the visitor avoid going through the extra security-verification steps, but they go through them if needed.

By resolving the IP to the geographic location you reduce the chance for a hacker (that is not the user's neighbor anyway) to know the additional information needed to complete the login, even if they obtain the username/password somehow.

This does pose an additional barrier to the legitimate user when they are not in their home-town (away on business, etc) and does not provide security against hackers in the same geo-lcoation ... but as a compromise might be additional security against hackers in a different town, state or country.

Just something to think about ...

*=
http://www.maxmind.com/app/ip-location-explained
http://www.digitalmediaminute.com/ar...-ip-to-country
http://www.ip2nation.com/
http://www.google.com/search?hl=en&c...on&btnG=Search
Last edited by langsor; Sep 12th, 2008 at 2:28 pm.
Google is the answer to all of your questions -- the trick is knowing what question to ask in your specific predicament.
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 94
Reputation: designingamy is an unknown quantity at this point 
Solved Threads: 0
designingamy designingamy is offline Offline
Junior Poster in Training

Re: sleep function

 
0
  #36
Sep 16th, 2008
Wow! Thanks everyone for the great advice!

~Amy
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC