3 Flaws to CakePHP's AuthComponent 3 Flaws to CakePHP's AuthComponent

Good Friday to all.  Over the past several weeks I have been working a lot with the AuthComponent in CakePHP and have learned a couple of lessons that I wanted to share with you all.

The title calls them "flaws", but I suppose this isn't completely accurate, it depends how you look at it.  To me they are flaws because I assumed the AuthComponent worked one way, only to find out different.


The three flaws I found are:

  1. Blank passwords being hashed
  2. Not hashing passwords because the password field is not in the "model" of the Auth
  3. Not hashing passwords because the username field is not in the form

 Blank passwords being hashed

The first flaw is what I discussed in my last post regarding isset().  The AuthComponent has an if statement that says "if the username is set and the password is set" the password should be hashed.

In my post I discuss how isset is returning true when the password field has no data in it.  This caused me a few problems because my password validation was never being met!  I would submit the form and the password field would come back populated with 32 characters hashed from a blank form field.

My fix for this was to simply update the if statement described above to use a !empty() instead of an isset() around the password field.

Not hashing passwords because the password field is not in the "model" of the Auth

This is an interesting one.  The reason I discovered it is I have a system where we need three different logins.  Regular users, providers, and admins.  I had to use three different tables because each store varying information.

In my app_controller.php I've setup a case statement to determine which model and controller to use for the login.  I do not know if this is the best solution, but I found it worked quite well for my purpose.

The problem that I noticed was, when I baked all of my models, controllers, and views, for the users and providers table I also chose to setup the admin routing.

When you are logged in as an admin and adding  or editing users, the password field was not automatically being hashed as it does when I'm adding or editing an admin account.

This is not a major flaw, but something I had not accounted for.  So I had to update my admin_add and admin_edit functions in the users_controller.php and providers_controller.php to hash the password for me.

Not hashing passwords because the username field is not in the form

I seem to have a knack for finding weird issues.  I was tasked with creating a "lost password" form.  Because we are using the AuthComponent and the default hash md5's the results, we couldn't create a standard lost password form that would email the password.  We had to build a process that would allow the user to reset their password.

The process I created was, a form to collect the email address.  An email would be sent with a link containing a key that would be validated against the account to ensure it was them and allow them to reset their password.

When you click the link and it validated successfully, a form would be displayed with a password and confirm password field to enter your new password.

Again, like the issue above, the password was not automatically encrypted when the form was posted.

There are two solutions to this problem, either add the username field to the form as a hidden field or like above, hash the password yourself.

I chose the former because I needed the email address as part of my secret key.

Even with these three flaws, I still love the CakePHP AuthComponent.  It saves a lot of time in setting up an authentication system.  I'm not sure what to do about my three issues in regards to submitting bug fixes or not because I'm not sure if they necessarily are a bug or not.  Hopefully, I have helped anyone who has run into a similar issue.

Published on Apr 10, 2009

Tags: CakePHP Tutorial | AuthComponent

Related Posts

Did you enjoy this article? If you did here are some more articles that I thought you will enjoy as they are very similar to the article that you just finished reading.

Tutorials

Learn how to code in HTML, CSS, JavaScript, Python, Ruby, PHP, Java, C#, SQL, and more.

No matter the programming language you're looking to learn, I've hopefully compiled an incredible set of tutorials for you to learn; whether you are beginner or an expert, there is something for everyone to learn. Each topic I go in-depth and provide many examples throughout. I can't wait for you to dig in and improve your skillset with any of the tutorials below.