Account Management
Our student account management system was written 6 years prior to my overhaul of the system. The system had morphed from it's original purpose into a tool that allowed first-time users to activate their account, to change a password, or reset a lost password. Our help desk used the system as their go-to troubleshooting step - they would tell clients to go through the process and call back in 30 minutes if they still couldn't access their account.
As part of the initial authentication process, I implemented a two-factor system with an asynchronous lookup and slight delay on the validation portion. This two-factor system isn't using any special external source, but relies on the user providing three different pieces of identifying information. The asynchronous lookup and delay are to help deny potential intruders from harvesting our system by brute forcing - the time to answer is identical regardless if the lookup was successful or not. The system also implements a basic throttling mechanism based on IP address that only activates when requests are received faster than an average person should be able to navigate the site.
The new system also encourages users to pick strong pass-phrase passwords over the standard short, random character password. The interface provides easy-to-read suggestions, as well as a basic, graphical scoring system.
While a short, simple password like A1a1a1a1a meets the minimum requirements and could be used, the scoring system would score this password around 30%, and show the user helpful hints that will help to increase their password score. A stronger, more complex password, such as myPa$sw0rDi$g0oD, would score perfectly, as it successfully implements all of the provided suggestions.
Custom Authentication Mechanism
One of my current projects provides a central mechanism that helps to securely implement single sign-on for our web applications, utilizing our third-party web portal. By creating a specialized web application that integrates directly with our portal, we are notified when a user logs in, accesses a new web application, and logs off. The single sign-on process generates a one-time token that is sent to the client's browser, which then uses the token and sends it to the destination web application. The destination web application uses the token to securely retrieve the user's credentials directly from the specialized central server, and allows us to securely identify the user without needing to trust any credentials coming from the browser.
An added advantage to this centralized system is the coordinatation of user-rights management at a high level for participating web applications. Part of the centralized process is retrieving common user data and their roles assigned to the application. This practice allows us to audit our web applications in a single place, and to have a standard system that creates and assigns user roles. We also have the ability to "secure" roles, which cause the destination web application to challenge the user to provide their password before being granted access. The password is salted and hashed using SHA-1 in the browser using JavaScript and is then forwarded on to the central server for verification. This allows us to secure sensitive roles from stolen cookies and replay attacks.
The destination web applications opt-in to the new authentication system by loading a shared assembly that provides the authentication process by using the standard, built-in .Net methods. The authentication framework implements services by using the IHttpModule interface to provide the AuthenticateRequest stage to authenticate our users. It also provides centralized session management, which allows our centralized web application to coordinate a user's logout from all associated web applications.