85
votes
19answers
4k views
The Definitive Guide To Website Authentication (beta)
Form Based Authentication For Websites
Please help us create the definitive resource for this topic. We believe that stackoverflow should not just be a resource for very specific technical questions, …
29
votes
14answers
1k views
What is the best Distributed Brute Force countermeasure?
First, a little background: It is no secret that I am implementing an auth+auth system for CodeIgniter, and so far I'm winning (so to speak). But I've run into a pretty non-trivial challenge (one that …
24
votes
10answers
956 views
Is 5-digit PIN better than most passwords?
This is something that's been bugging me for many years: why most online services highly value the entropy of a password, citing it as a security measure, and enforcing it when users select a …
20
votes
13answers
795 views
What are the pros and cons of using an email address as a user id?
I'm creating a web app that requires registration/authentication, and I'm considering using an email address as the sole user id. Here are what I see as the pros and cons (updated with responses):
…
16
votes
14answers
15k views
What Code Igniter authentication library is best?
I see there are a few. Which ones are best maintained and easy to use? Or should I just write my own?
14
votes
7answers
4k views
How do you access an authenticated Google App Engine service from a (non-web) python client?
I have a Google App Engine app - http://mylovelyapp.appspot.com/
It has a page - mylovelypage
For the moment, the page just does self.response.out.write('OK')
If I run the following Python at my …
13
votes
8answers
1k views
Non-random salt for password hashes
Typically, I always recommend using a cryptographically-strong random value as salt, to be used with hash functions (e.g. for passwords), such as to protect against Rainbow Table attacks.
But is it …
13
votes
9answers
10k views
C# Validate a username and password against Active Directory?
How can I validate a username and password against Active Directory? I simply want to check if a username and password are correct.
13
votes
3answers
498 views
What’s the best .NET library for OpenID and ASP.NET MVC?
I'm looking at using OpenID for my authentication scheme and wanted to know what the best .NET library is to use for MVC specific applications?
thx
10
votes
6answers
467 views
PHP best practices for user authentication and password security.
What are the best current libraries/methods to authenticate users without the use of a CMS or heavy framework?
Responses should include suggestions for anything you think should be considered the …
10
votes
4answers
324 views
OpenID authentication and API access
OpenID authentication is inherently browser based. If I wanted to allow an OpenID user to authenticate against an API for use in alternative clients, is there an accepted best practice for that?
So …
10
votes
3answers
1k views
User authentication and authorisation in ASP.NET MVC
What is the best method for user authorisation/authentication in ASP.NET MVC?
I see there are really two approaches:
Use the built-in ASP.NET authorisation system.
Use a custom system with my own …
10
votes
11answers
511 views
Should application users be database users?
My previous job involved maintenance and programming for a very large database with massive amounts of data. Users viewed this data primarily through an intranet web interface. Instead of having a …
9
votes
5answers
476 views
Please Critique my PHP authentication efforts
After posting this a while back, I decided to create my own Registration / Authentication capability in PHP. I'd love anyone to point out the flaws / opportunities for improvement, particularly …
9
votes
3answers
1k views
Why does AuthorizeAttribute redirect to the login page for authentication and authorization failures?
In ASP.NET MVC, you can mark up a controller method with AuthorizeAttribute, like this:
[Authorize(Roles = "CanDeleteTags")]
public void Delete(string tagName)
{
// ...
}
This means that, if …
