Tagged Questions
Authentication is commonly understood as the act of asserting a user's or entity's identity, although in the wider sense it can refer to asserting the truthfulness of any kind of claim. Authentication, like encryption, is a major component in implementing computer security.
711
votes
8answers
85k views
The Definitive Guide To Forms based Website Authentication
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, ...
108
votes
18answers
72k views
What CodeIgniter authentication library is best? [closed]
I see there are a few. Which ones are best maintained and easy to use? Or should I just write my own?
89
votes
11answers
75k 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.
57
votes
15answers
4k 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 ...
56
votes
5answers
18k views
user authentication libraries for node.js?
Are there any existing user authentication libraries for node.js? In particular I'm looking for something that can do password authentication for a user (using a custom backend auth DB), and associate ...
53
votes
5answers
26k views
Security of REST authentication schemes
Background:
I'm designing the authentication scheme for a REST web service. This doesn't "really" need to be secure (it's more of a personal project) but I want to make it as secure as possible as an ...
50
votes
5answers
20k views
Extending the User model with custom fields in Django
What's the best way to extend the User model (bundled with Django's authentication app) with custom fields? I would also possibly like to use the email as the username (for authentication purposes).
...
48
votes
2answers
4k views
How is oauth 2 different from oauth 1
In very simple terms, can someone tell what's the difference between oauth 2 and oauth 1.
Is oauth 1 obsolete now and I should be implementing oauth 2? I don't see many implementations of oauth 2. ...
45
votes
6answers
17k 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 ...
44
votes
11answers
1k views
What are best practices for securing the admin section of a website?
I'd like to know what people consider best practice for securing the Admin sections of websites, specifically from an authentication/access point of view.
Of course there are obvious things, such as ...
42
votes
3answers
14k views
How to redirect to a dynamic login URL in ASP.NET MVC
I'm creating a multi-tenancy web site which hosts pages for clients. The first segment of the URL will be a string which identifies the client, defined in Global.asax using the following URL routing ...
41
votes
4answers
6k 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 ...
40
votes
14answers
2k 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):
...
38
votes
5answers
5k views
OpenID vs. OAuth
What is really the difference between OpenID and oAuth? They look just the same to me.
I should clarify, I'm planning to use them in drupal, if that makes any difference. So I guess I'm bound by ...
38
votes
8answers
17k views
RESTful Authentication
What does RESTful Authentication mean and how does it work. I can't find a good overview on google. My only understanding is that you pass the session key (remeberal) in the URL, but this could be ...
38
votes
12answers
19k views
Best Solution For Authentication in Ruby on Rails
I'm looking for a pre-built solution I can use in my RoR application. I'm ideally looking for something similar to the ASP.NET Forms authentication that provides email validation, sign-up controls, ...
37
votes
3answers
5k views
Where do you store your salt strings?
I've always used a proper per-entry salt string when hashing passwords for database storage. For my needs, storing the salt in the DB next to the hashed password has always worked fine.
However, ...
35
votes
11answers
17k views
HTTP authentication logout via PHP
What is the correct way to log out of HTTP authentication protected folder?
There are workarounds that can achieve this, but they are potentially dangerous because they can be buggy or don't work in ...
34
votes
11answers
2k views
Why should checking a wrong password take longer than checking the right one?
This question has always troubled me.
On Linux, when asked for a password, if your input is the correct one, it checks right away, with almost no delay. But, on the other hand, if you type the wrong ...
31
votes
10answers
2k 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 ...
31
votes
9answers
8k views
Non-random salt for password hashes
UPDATE: I recently learned from this question that in the entire discussion below, I (and I am sure others did too) was a bit confused: What I keep calling a rainbow table, is in fact called a hash ...
29
votes
4answers
6k views
Is it possible to create a Logon System with ASP.NET MVC but not use the MembershipProvider?
I have an existing database with a users table, and we are planning to take the database and use it for a new system built in ASP.NET MVC. However, what I am uncertain about is whether or not I am ...
29
votes
3answers
12k views
REST and authentication variants
I am currently working on a REST library for .net, and I would like to hear some opinions about an open point I have: REST and authentication.
Here is an example of an RESTful interface used with ...
29
votes
1answer
21k views
How to use Python to login to a webpage and retrieve cookies for later usage?
I want to download and parse webpage using python, but to access it I need a couple of cookies set. Therefore I need to login over https to the webpage first. The login moment involves sending two ...
28
votes
5answers
10k views
Rails 3 authentication solutions
I poked around StackOverflow and Google, but couldn't find anyone who has put together a comparison of authentication gems or plugins for Rails (I'm looking for something for Rails 3). What ...
28
votes
3answers
8k views
Override Authorize Attribute in ASP.NET MVC
I have an MVC controller base class on which I applied the Authorize attribute since I want almost all of the controllers (and their actions along) to be authorized.
However I need to have a ...
27
votes
8answers
2k views
Which authentication and authorization schemes are you using - and why?
We're beginning to design a whole bunch of new services to create (WCF, ADO.NET Data Services, possibly in the cloud at some point) and one question that pops up is what authentication and ...
27
votes
6answers
10k 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 ...
26
votes
3answers
7k views
Is Facebook an OpenID provider?
Is Facebook an OpenID provider? I know they are an OpenID supporter but do they allow people to authenticate with other sites via OpenID with their Facebook credentials?
24
votes
6answers
1k views
Where can I find a list of OpenID Provider URLs?
I've implemented OpenID on my website but I'm having a hard time finding a list of OpenID Provider URLs. I thought this would be easy to find but I've scoured the web and only found a handful, mostly ...
23
votes
2answers
2k views
Best way to implement Single-Sign-On with all major providers?
I already did a lot of research on this topic and have implemented a lot of solutions myself.
Including OpenID, Facebook Connect (using the old Rest api and the new Graph Oauth 2.0 Api), Sign in with ...
23
votes
3answers
2k views
How does OpenID authentication work?
I am a little curious to know about how OpenID authentication works.
Is there any difference between OpenID authentication and the authentication which sites use exclusively for themselves?
23
votes
8answers
14k views
Authenticating against active directory using python + ldap
How do I authenticate against AD using Python + LDAP. I'm currently using the python-ldap library and all it is producing is tears.
I can't even bind to perform a simple query:
import sys
import ...
23
votes
4answers
987 views
What's the best .NET library for OpenID and ASP.NET MVC? [closed]
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
22
votes
2answers
7k views
Socket.IO Authentication
I am trying to use Socket.IO in Node.js, and am trying to allow the server to give an identity to each of the Socket.IO clients. As the socket code is outside the scope of the http server code, it ...
22
votes
6answers
2k views
Forgot Password: what is the best method of implementing a forgot password function?
I'm wondering what the best method is for creating a forgot password function on a website. I have seen quite a few out there, here are a few or combination of:
passphrase question / answer (1 or ...
22
votes
3answers
5k views
Django authentication and Ajax - URLs that require login
I want to add some Ajax-niceness to my Django-coded website.
In my Django code, I use the @login_required decorator from django.contrib.auth.decorators to mark which view requires authentication. ...
22
votes
9answers
14k views
Single Sign On across multiple domains
Our company has multiple domains set up with one website hosted on each of the domains. At this time, each domain has its own authentication which is done via cookies.
When someone logged on to one ...
21
votes
7answers
6k views
RoR Devise: Sign in with username OR email
What's the best way to enable users to log in with their email address OR their username? I am using warden + devise for authentication. I think it probably won't be too hard to do it but i guess i ...
20
votes
2answers
8k views
Uploadify (Session and authentication) with ASP.NET MVC
When I use Authorize filter on an action or a controller used by uplodify (http://www.uploadify.com/) the action isn't reach...
moreover Session are not retrieved.
I found this to retrieved user ...
19
votes
3answers
11k views
Custom authentication in google app engine (python)
Does anyone know or know of somewhere I can learn how to create a custom authentication process using python and google app engine?
I don't want to use google accounts for authentication and want to ...
18
votes
3answers
15k views
C#: How to validate domain credentials?
i want to validate a set of credentials against the domain controller. e.g.:
Username: STACKOVERFLOW\joel
Password: splotchy
Method 1. Query Active Directory with Impersonation
A lot of people ...
17
votes
5answers
6k views
Extending Devise SessionsController to authenticate using JSON
I am trying to build a rails API for an iphone app. Devise works fine for logins through the web interface but I need to be able to create and destroy sessions using REST API and I want to use JSON ...
17
votes
3answers
1k views
Which CAS implementation to use in django?
Which CAS implementation should i use to enable CAS single sign on to my django app (trusing a specified CAS server, I'm not interested in creating a CAS provider) ? What I can find are the ...
17
votes
6answers
3k 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 ...
17
votes
3answers
956 views
What is SAML?
I saw an interesting blank page today titled "saml post profile intersite transit."
What is SAML?
What was it created for?
What is it commonly used for?
What was the page I mentioned above all ...
17
votes
5answers
26k views
cURL equivalent in JAVA
I am tasked with writing an authentication component for an open source JAVA app. We have an in-house authentication widget that uses https. I have some example php code that accesses the widget ...
16
votes
6answers
462 views
Password hashing - how to upgrade?
There's plenty of discussion on the best algorithm - but what if you're already in production? How do you upgrade without having to reset on the user?
EDIT/DISCLAIMER: Although I originally wanted ...
16
votes
4answers
3k views
OpenID authentication in Ruby on Rails
I am a neophyte with Ruby on Rails but I've created a couple of small apps. Anyway, I'm really interested in OpenID and I would like to implement OpenID authentication and maybe some Sreg stuff in a ...
15
votes
6answers
3k views
ASP.NET MVC - Alternative to Role Provider?
I'm trying to avoid the use of the Role Provider and Membership Provider since its way too clumsy in my opinion, and therefore I'm trying to making my own "version" which is less clumsy and more ...