vote up 16 vote down star
28

I see there are a few. Which ones are best maintained and easy to use? Or should I just write my own?

flag

14 Answers

vote up 5 vote down check

Maybe you'd find Redux suiting your needs. It's no overkill and comes packed solely with bare features most of us would require. The dev and contributors were very strict on what code was contributed.

This is the official page

link|flag
1  
does the current version support the latest version of Code Igniter? It seems like there hasn't been an update in very long. Otherwise I like it. – GavinR Dec 14 '08 at 5:40
I'm using Redux with the latest CI version in a production site. It's very lightweight, just like CI and very customizable. – GloryFish Jan 30 at 22:57
vote up 0 vote down

I used redux 2 as a start and then made it fit my needs. I doubt you'll find an "off-the-shelf" solution that you're 100% happy with.

link|flag
vote up 0 vote down

Hello,

I'm not sure if 'Authentication for CodeIgniter done right' is anywhere available?:) or is it a dream...?:) Thanks fot nice post !:)

link|flag
vote up 0 vote down

Uses potentially unsafe sha1 hashing

actually sha1 is more secure than md5....and newest recomendation is to use SHA2(SHA-224, SHA-256, SHA-384, and SHA-512) hashing....

http://en.wikipedia.org/wiki/SHA_hash_functions

link|flag
vote up -2 vote down

But I want a full feature, same as freakauth light

link|flag
vote up -3 vote down

Hi Jens Roland

is these use for kohana framework? Or else?

link|flag
clarifying questions should be posted as comments, not answers – austinfromboston Aug 27 at 3:47
question placed in wrong place (should be a comment for the answer) and the question clearly states it is asking about CodeIgniter and not Kohana – Scorchin Sep 10 at 11:03
vote up 0 vote down

I like your 20-step program. I've been frustrated with Redux, but it seems like the best-featured, best-documented solution out there. Don't understand why the skeleton of some standard auth wasn't build into CI. Their explanation that it "would look different for every app" seems like a copout.

link|flag
vote up 11 vote down

Hi Jens Roland.

I'm the developer of Redux Auth and some of the issues you mentioned have been fixed in the version 2 beta. You can download this off the offcial website with a sample application too.

  • Requires autoloading (impeding performance)
  • Uses the inherently unsafe concept of 'security questions'. Dealbreaker!

Security questions are now not used and a simpler forgotten password system has been put in place.

  • Return types are a bit of a hodgepodge of true, false, error and success codes

This was fixed in version 2 and returns boolean values. I hated the hodgepodge as much as you.

  • Doesn't hook into CI's validation system

The sample application uses the CI's validation system.

  • Doesn't allow a user to resend a 'lost password' code

Work in progress

I also implemented some other features such as email views, this gives you the choice of being able to use the CodeIgniter helpers in your emails.

It's still a work in progress so if have any more suggestions please keep them coming.

-Popcorn

Ps : Thanks for recommending Redux.

link|flag
Oh hi Mathew - and thanks for taking the time to answer my post. The beta sounds very interesting - as I'm sure you noticed, Redux already came closest to getting it all right in my round-up, so I'll be looking into it right away. – Jens Roland Jan 29 at 10:47
Just had a quick glance at the CI Forum thread and the roadmap. Looking good - with respect to the 'dynamic' salts, I recommend concatenating (reg. date) . (config file hash key) . (code or password) to thwart rainbow tables and brute force on a stolen database – Jens Roland Jan 29 at 11:06
Also, I have some thoughts on auth best practices (stackoverflow.com/questions/549/…) and botnet throttling (stackoverflow.com/questions/479233/…) you might want to run over – Jens Roland Jan 29 at 11:10
Hi Mathew, are you accepting any new developers onto the Redux project? – Jon Winstanley Apr 2 at 14:27
vote up 49 vote down

I've implemented my own as well (currently about 80% done after a few weeks of work). I tried all of the others first; FreakAuth Light, DX Auth, Redux, SimpleLogin, SimpleLoginSecure, pc_user, Fresh Powered, and a few more. None of them were up to par, IMO, either they were lacking basic features, inherently INsecure, or too bloated for my taste.

Actually, I did a detailed roundup of all the authentication libraries for CodeIgniter when I was testing them out (just after New Year's). FWIW, I'll share it with you:

DX Auth

Pros

  • Very full featured
  • Medium footprint (25+ files), but manages to feel quite slim
  • Excellent documentation, although some is in slightly broken English
  • Language file support
  • reCAPTCHA supported
  • Hooks into CI's validation system
  • Activation emails
  • Unactivated accounts auto-expire
  • Suggests grc.com for salts (not bad for a PRNG)
  • Banning with stored 'reason' strings
  • Simple yet effective error handling

Cons

  • Only lets users 'reset' a lost password (rather than letting them pick a new one upon reactivation)
  • Homebrew pseudo-event model - good intention, but misses the mark
  • Two password fields in the user table, bad style
  • Uses two separate user tables (one for 'temp' users - ambiguous and redundant)
  • Uses potentially unsafe md5 hashing
  • Failed login attempts only stored by IP, not by username - unsafe!
  • Autologin key not hashed in the database - practically as unsafe as storing passwords in cleartext!
  • Role system is a complete mess: is_admin function with hard-coded role names, is_role a complete mess, check_uri_permissions is a mess, the whole permissions table is a bad idea (a URI can change and render pages unprotected; permissions should always be stored exactly where the sensitive logic is). Dealbreaker!
  • Includes a native (poor) CAPTCHA
  • reCAPTCHA function interface is messy

FreakAuth Light

Pros

  • Very full featured
  • Mostly quite well documented code
  • Separation of user and profile data is a nice touch
  • Hooks into CI's validation system
  • Activation emails
  • Language file support
  • Actively developed

Cons

  • Feels a bit bloated (50+ files)
  • And yet it lacks automatic cookie login (!)
  • Doesn't support logins with both username and password
  • Seems to have issues with UTF-8 characters
  • Requires a lot of autoloading (impeding performance)
  • Badly micromanaged config file
  • Terrible View-Controller separation, with lots of program logic in views and output hard-coded into controllers. Dealbreaker!
  • Poor HTML code in the included views
  • Includes substandard CAPTCHA
  • Commented debug echoes everywhere
  • Forces a specific folder structure
  • Forces a specific Ajax library (can be switched, but shouldn't be there in the first place)
  • No max limit on login attempts - VERY unsafe! Dealbreaker!
  • Hijacks form validation
  • Uses potentially unsafe md5 hashing

pc_user

Pros

  • Good feature set for its tiny footprint
  • Lightweight, no bloat (3 files)
  • Elegant automatic cookie login
  • Comes with optional test implementation (nice touch)

Cons

  • Uses the old CI database syntax (less safe)
  • Doesn't hook into CI's validation system
  • Kinda unintuitive status (role) system (indexes upside down - impractical)
  • Uses potentially unsafe sha1 hashing

Fresh Powered

Pros

  • Small footprint (6 files)

Cons

  • Lacks a lot of essential features. Dealbreaker!
  • Everything is hard-coded. Dealbreaker!

Redux

Pros

  • Tiny footprint, no bloat (3 files)
  • Excellent documentation
  • Database normalized to 3rd normal form (nice touch)
  • Activation emails
  • Sleek coding style
  • Suggests grc.com for salts (not bad for a PRNG)

Cons

  • Requires autoloading (impeding performance)
  • Uses the inherently unsafe concept of 'security questions'. Dealbreaker!
  • Return types are a bit of a hodgepodge of true, false, error and success codes
  • Doesn't hook into CI's validation system
  • Doesn't allow a user to resend a 'lost password' code

EDIT: Mathew Davies, who develops Redux Auth, says a bunch of the cons in my list (including the security questions dealbreaker) have been fixed in the latest beta, so that should definitely be worth checking out

SimpleLoginSecure

Pros

  • Tiny footprint (4 files)
  • Minimalistic, absolutely no bloat
  • Uses phpass for hashing (excellent)

Cons

  • Only login, logout, create and delete
  • Lacks a lot of essential features. Dealbreaker!
  • More of a starting point than a library


Don't get me wrong: I don't mean to disrespect any of the above libraries; I am very impressed with what their developers have accomplished and how far each of them have come, and I'm not above reusing some of their code to build my own. What I'm saying is, sometimes in these projects, the focus shifts from the essential 'need-to-haves' (such as hard security practices) over to softer 'nice-to-haves', and that's what I hope to remedy.

Therefore: back to basics.

Authentication for CodeIgniter done right

Here's my MINIMAL required list of features from an authentication library. It also happens to be a subset of my own library's feature list ;)

  1. Tiny footprint with optional test implementation
  2. Full documentation
  3. No autoloading required. Just-in-time loading of libraries for performance
  4. Language file support; no hard-coded strings
  5. reCAPTCHA supported but optional
  6. Recommended TRUE random salt generation (e.g. using random.org or random.irb.hr)
  7. Optional add-ons to support 3rd party login (OpenID, Facebook Connect, Google Account, etc.)
  8. Login using either username or email
  9. Separation of user and profile data
  10. Emails for activation and lost passwords
  11. Automatic cookie login feature
  12. Configurable phpass for hashing (properly salted of course!)
  13. Hashing of passwords
  14. Hashing of autologin codes
  15. Hashing of lost password codes
  16. Hooks into CI's validation system
  17. NO security questions!
  18. Enforced strong password policy server-side, with optional client-side (Javascript) validator
  19. Enforced maximum number of failed login attempts with BEST PRACTICES countermeasures against both dictionary and DoS attacks!
  20. All database access done through prepared (bound) statements!

Note: those last few points are not super-high-security overkill that you don't need for your web application. If an authentication library doesn't meet these security standards 100%, DO NOT USE IT!

Recent high-profile examples of irresponsible coders who left them out of their software: #17 is how Sarah Palin's AOL email was hacked during the Presidential campaign; a nasty combination of #18 and #19 were the culprit recently when the Twitter accounts of Britney Spears, Barack Obama, Fox News and others were hacked; and #20 alone is how Chinese hackers managed to steal 9 million items of personal information from more than 70.000 Korean web sites in one automated hack in 2008.

These attacks are not brain surgery. If you leave your back doors wide open, you shouldn't delude yourself into a false sense of security by bolting the front. Moreover, if you're serious enough about coding to choose a best-practices framework like CodeIgniter, you owe it to yourself to at least get the most basic security measures done right.


<rant>

Basically, here's how it is: I don't care if an auth library offers a bunch of features, advanced role management, PHP4 compatibility, pretty CAPTCHA fonts, country tables, complete admin panels, bells and whistles -- if the library actually makes my site less secure by not following best practices. It's an authentication package; it needs to do ONE thing right: Authentication. If it fails to do that, it's actually doing more harm than good.

</rant>

/Jens Roland

link|flag
Hi Jens, did you get around to working on your Authentication system? – Jon Winstanley Mar 10 at 14:20
1  
I am still on it, ran into a nasty architecture problem and had to choose between hacking together a quick workaround (that would work just fine but suffer from tight coupling), or sit back and think hard about how to do it right. I chose the latter option, and still haven't cracked it :D – Jens Roland Mar 11 at 2:25
Good luck with it! I was on Freak Auth, but am currently looking at the beta of Redux 2. Looks very nice so far... – Jon Winstanley Mar 18 at 10:11
Jens, you might want to look at Tank Auth which seems to have been created in response to your (excellent) post: codeigniter.com/forums/viewthread/110993 – Richard M Aug 3 at 14:50
vote up 3 vote down

I tried Redux. Wasn't a fan. In the end, I ended up making a CI wrapper for Zend_Auth, which works like a charm.

link|flag
and how, exactly, does one make such a wrapper? – gaoshan88 Dec 14 '08 at 6:50
I have to make a deadline (this Monday), but once that's over I'll try to post the source. – enobrev Dec 14 '08 at 11:06
enobrev - would of loved to hear about your wrapper for Zend. Possible you can expand upon that? – NTulip Jul 29 at 3:39
I think we'd better try to light up his message icon up top by commenting on this answer repeatedly. ;-) – MiseryIndex Nov 4 at 0:10
vote up 0 vote down

Also take a look at BackendPro

Ultimately you will probably end up writing something custom, but there's nothing wrong with borrowing concepts from DX Auth, Freak Auth, BackendPro, etc.

My experiences with the packaged apps is they are specific to certain structures and I have had problems integrating them into my own applications without requiring hacks, then if the pre-package has an update, I have to migrate them in.

I also use Smarty and ADOdb in my CI code, so no matter what I would always end up making major code changes.

link|flag
vote up -2 vote down

have u try reduxAuth ?

here app that already implement it : Linkster

link|flag
vote up 1 vote down

I use a customized version of DX Auth. I found it simple to use, extremely easy to modify and it has a user guide (with great examples) that is very similar to Code Igniter's.

link|flag
vote up 0 vote down

I've tried both FreakAuth and Erkana. I found FreakAuth was overkill for my needs (a simple login form + user add/edit/delete). I evaluated Erkana, but decided not to use, although I no longer remember exactly why. I may also have tried Sentry.

In the end I wrote my own, based on the CodeIgniter Filters System.

Jim.

link|flag
Erkana was overkill? All it did was provide a set of methods that enforced best practices in the writing of your own authentication process. I need to give Erkana a proper rewrite... – Michael Wales May 15 at 11:58
FreakAuth was certainly overkill, tried to do a lot more than I needed in my app (e.g. registration). Erkana I remember looking at, but not using for some reason. I'll edit the answer to be more accurate. – Jim OHalloran May 18 at 0:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.