What Code Igniter authentication library is best? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T22:54:39Z http://stackoverflow.com/feeds/question/346980 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best 18 What Code Igniter authentication library is best? GavinR 2008-12-06T23:31:03Z 2009-11-27T19:08:21Z <p>I see there are <a href="http://codeigniter.com/wiki/Category:Libraries::Authentication/" rel="nofollow">a few</a>. Which ones are best maintained and easy to use? Or should I just write my own?</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/351969#351969 0 Answer by Jim OHalloran for What Code Igniter authentication library is best? Jim OHalloran 2008-12-09T06:38:41Z 2009-05-18T00:47:13Z <p>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. </p> <p>In the end I wrote my own, based on the CodeIgniter <a href="http://codeigniter.com/wiki/Filters_system/" rel="nofollow">Filters System</a>.</p> <p>Jim.</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/355555#355555 5 Answer by kRON for What Code Igniter authentication library is best? kRON 2008-12-10T09:54:56Z 2008-12-10T09:54:56Z <p>Maybe you'd find <a href="http://codeigniter.com/forums/viewthread/90254/" rel="nofollow">Redux</a> 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.</p> <p>This is the <a href="http://code.google.com/p/reduxauth/" rel="nofollow">official page</a></p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/357020#357020 1 Answer by Jelani Harris for What Code Igniter authentication library is best? Jelani Harris 2008-12-10T18:08:31Z 2008-12-10T18:08:31Z <p>I use a customized version of <a href="http://codeigniter.com/forums/viewthread/98465/P0/" rel="nofollow">DX Auth</a>. I found it simple to use, extremely easy to modify and it has a <a href="http://dexcell.shinsengumiteam.com/dx_auth/" rel="nofollow">user guide (with great examples)</a> that is very similar to Code Igniter's.</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/361763#361763 -2 Answer by Gogonez for What Code Igniter authentication library is best? Gogonez 2008-12-12T03:11:08Z 2008-12-12T03:11:08Z <p>have u try <a href="http://code.google.com/p/reduxauth/" rel="nofollow">reduxAuth</a> ? </p> <p>here app that already implement it : <a href="http://www.assembla.com/wiki/show/linkster" rel="nofollow">Linkster</a></p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/364722#364722 0 Answer by Adam for What Code Igniter authentication library is best? Adam 2008-12-13T02:53:36Z 2008-12-13T02:53:36Z <p>Also take a look at <a href="http://www.kaydoo.co.uk/projects/backendpro" rel="nofollow">BackendPro</a></p> <p>Ultimately you will probably end up writing something custom, but there's nothing wrong with borrowing concepts from DX Auth, Freak Auth, BackendPro, etc.</p> <p>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.</p> <p>I also use Smarty and ADOdb in my CI code, so no matter what I would always end up making major code changes.</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/365218#365218 3 Answer by enobrev for What Code Igniter authentication library is best? enobrev 2008-12-13T13:33:10Z 2008-12-13T13:33:10Z <p>I tried Redux. Wasn't a fan. In the end, I ended up making a CI wrapper for <a href="http://framework.zend.com/manual/en/zend.auth.html" rel="nofollow">Zend_Auth</a>, which works like a charm.</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/476902#476902 52 Answer by Jens Roland for What Code Igniter authentication library is best? Jens Roland 2009-01-24T23:49:13Z 2009-01-29T11:23:56Z <p>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.</p> <p>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:</p> <h2>DX Auth</h2> <blockquote> <p>Pros</p> <ul> <li>Very full featured</li> <li>Medium footprint (25+ files), but manages to feel quite slim</li> <li>Excellent documentation, although some is in slightly broken English</li> <li>Language file support</li> <li>reCAPTCHA supported</li> <li>Hooks into CI's validation system</li> <li>Activation emails</li> <li>Unactivated accounts auto-expire</li> <li>Suggests grc.com for salts (not bad for a PRNG)</li> <li>Banning with stored 'reason' strings</li> <li>Simple yet effective error handling</li> </ul> <p>Cons</p> <ul> <li>Only lets users 'reset' a lost password (rather than letting them pick a new one upon reactivation)</li> <li>Homebrew pseudo-event model - good intention, but misses the mark</li> <li>Two password fields in the user table, bad style</li> <li>Uses two separate user tables (one for 'temp' users - ambiguous and redundant)</li> <li>Uses potentially unsafe md5 hashing</li> <li>Failed login attempts only stored by IP, not by username - unsafe!</li> <li>Autologin key not hashed in the database - practically as unsafe as storing passwords in cleartext!</li> <li>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!</li> <li>Includes a native (poor) CAPTCHA</li> <li>reCAPTCHA function interface is messy</li> </ul> </blockquote> <h2>FreakAuth Light</h2> <blockquote> <p>Pros</p> <ul> <li>Very full featured</li> <li>Mostly quite well documented code</li> <li>Separation of user and profile data is a nice touch</li> <li>Hooks into CI's validation system</li> <li>Activation emails</li> <li>Language file support</li> <li>Actively developed</li> </ul> <p>Cons</p> <ul> <li>Feels a bit bloated (50+ files)</li> <li>And yet it lacks automatic cookie login (!)</li> <li>Doesn't support logins with both username and password</li> <li>Seems to have issues with UTF-8 characters</li> <li>Requires a lot of autoloading (impeding performance)</li> <li>Badly micromanaged config file</li> <li>Terrible View-Controller separation, with lots of program logic in views and output hard-coded into controllers. Dealbreaker!</li> <li>Poor HTML code in the included views</li> <li>Includes substandard CAPTCHA</li> <li>Commented debug echoes everywhere</li> <li>Forces a specific folder structure</li> <li>Forces a specific Ajax library (can be switched, but shouldn't be there in the first place)</li> <li>No max limit on login attempts - VERY unsafe! Dealbreaker!</li> <li>Hijacks form validation</li> <li>Uses potentially unsafe md5 hashing</li> </ul> </blockquote> <h2>pc_user</h2> <blockquote> <p>Pros</p> <ul> <li>Good feature set for its tiny footprint</li> <li>Lightweight, no bloat (3 files)</li> <li>Elegant automatic cookie login</li> <li>Comes with optional test implementation (nice touch)</li> </ul> <p>Cons</p> <ul> <li>Uses the old CI database syntax (less safe)</li> <li>Doesn't hook into CI's validation system</li> <li>Kinda unintuitive status (role) system (indexes upside down - impractical)</li> <li>Uses potentially unsafe sha1 hashing</li> </ul> </blockquote> <h2>Fresh Powered</h2> <blockquote> <p>Pros</p> <ul> <li>Small footprint (6 files)</li> </ul> <p>Cons</p> <ul> <li>Lacks a lot of essential features. Dealbreaker!</li> <li>Everything is hard-coded. Dealbreaker!</li> </ul> </blockquote> <h2>Redux</h2> <blockquote> <p>Pros</p> <ul> <li>Tiny footprint, no bloat (3 files)</li> <li>Excellent documentation</li> <li>Database normalized to 3rd normal form (nice touch)</li> <li>Activation emails</li> <li>Sleek coding style</li> <li>Suggests grc.com for salts (not bad for a PRNG)</li> </ul> <p>Cons</p> <ul> <li>Requires autoloading (impeding performance)</li> <li>Uses the inherently unsafe concept of 'security questions'. Dealbreaker!</li> <li>Return types are a bit of a hodgepodge of true, false, error and success codes</li> <li>Doesn't hook into CI's validation system</li> <li>Doesn't allow a user to resend a 'lost password' code</li> </ul> </blockquote> <p><strong>EDIT</strong>: <em>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</em></p> <h2>SimpleLoginSecure</h2> <blockquote> <p>Pros</p> <ul> <li>Tiny footprint (4 files)</li> <li>Minimalistic, absolutely no bloat</li> <li>Uses phpass for hashing (excellent)</li> </ul> <p>Cons</p> <ul> <li>Only login, logout, create and delete</li> <li>Lacks a lot of essential features. Dealbreaker!</li> <li>More of a starting point than a library</li> </ul> </blockquote> <p><hr /></p> <p><strong>Don't get me wrong:</strong> 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.</p> <p>Therefore: back to basics.</p> <h2>Authentication for CodeIgniter done <em>right</em></h2> <p>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 ;)</p> <blockquote> <ol> <li>Tiny footprint with optional test implementation</li> <li>Full documentation</li> <li>No autoloading required. Just-in-time loading of libraries for performance</li> <li>Language file support; no hard-coded strings</li> <li>reCAPTCHA supported but optional</li> <li>Recommended TRUE random salt generation (e.g. using random.org or random.irb.hr)</li> <li>Optional add-ons to support 3rd party login (OpenID, Facebook Connect, Google Account, etc.)</li> <li>Login using either username or email</li> <li>Separation of user and profile data</li> <li>Emails for activation and lost passwords</li> <li>Automatic cookie login feature</li> <li>Configurable phpass for hashing (properly salted of course!)</li> <li>Hashing of passwords</li> <li>Hashing of autologin codes</li> <li>Hashing of lost password codes</li> <li>Hooks into CI's validation system</li> <li>NO security questions!</li> <li>Enforced strong password policy server-side, with optional client-side (Javascript) validator</li> <li>Enforced maximum number of failed login attempts with <strong>BEST PRACTICES countermeasures</strong> against both dictionary and DoS attacks!</li> <li>All database access done through prepared (bound) statements!</li> </ol> </blockquote> <p>Note: those last few points are <em>not</em> super-high-security overkill that you don't need for your web application. <strong>If an authentication library doesn't meet these security standards 100%, DO NOT USE IT!</strong></p> <p>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.</p> <p>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 <em>basic</em> security measures done right.</p> <p><hr /></p> <p>&lt;rant&gt;</p> <p>Basically, here's how it is: <em>I don't care</em> 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 <strong>less secure</strong> by not following best practices. It's an <em>authentication</em> package; it needs to do ONE thing right: Authentication. If it fails to do <em>that</em>, it's actually doing more harm than good.</p> <p>&lt;/rant&gt;</p> <p>/Jens Roland</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/488123#488123 11 Answer by Mathew for What Code Igniter authentication library is best? Mathew 2009-01-28T15:46:54Z 2009-05-05T06:12:39Z <p>Hi Jens Roland.</p> <p>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.</p> <blockquote> <ul> <li>Requires autoloading (impeding performance)</li> <li>Uses the inherently unsafe concept of 'security questions'. Dealbreaker!</li> </ul> </blockquote> <p>Security questions are now not used and a simpler forgotten password system has been put in place.</p> <blockquote> <ul> <li>Return types are a bit of a hodgepodge of true, false, error and success codes</li> </ul> </blockquote> <p>This was fixed in version 2 and returns boolean values. I hated the hodgepodge as much as you.</p> <blockquote> <ul> <li>Doesn't hook into CI's validation system</li> </ul> </blockquote> <p>The sample application uses the CI's validation system.</p> <blockquote> <ul> <li>Doesn't allow a user to resend a 'lost password' code</li> </ul> </blockquote> <p>Work in progress</p> <p>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.</p> <p>It's still a work in progress so if have any more suggestions please keep them coming.</p> <p>-Popcorn</p> <p>Ps : Thanks for recommending Redux.</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/773497#773497 0 Answer by Sean McCambridge for What Code Igniter authentication library is best? Sean McCambridge 2009-04-21T16:31:49Z 2009-05-05T06:51:15Z <p>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.</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/1077587#1077587 -3 Answer by Khanh for What Code Igniter authentication library is best? Khanh 2009-07-03T02:48:53Z 2009-07-03T02:48:53Z <p>Hi Jens Roland</p> <p>is these use for kohana framework? Or else?</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/1077602#1077602 -2 Answer by Khanh for What Code Igniter authentication library is best? Khanh 2009-07-03T02:55:44Z 2009-07-03T02:55:44Z <p>But I want a full feature, same as freakauth light</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/1226565#1226565 0 Answer by Nemke for What Code Igniter authentication library is best? Nemke 2009-08-04T09:42:10Z 2009-08-04T09:42:10Z <blockquote> <p>Uses potentially unsafe sha1 hashing</p> </blockquote> <p>actually sha1 is more secure than md5....and newest recomendation is to use SHA2(SHA-224, SHA-256, SHA-384, and SHA-512) hashing....</p> <p><a href="http://en.wikipedia.org/wiki/SHA_hash_functions" rel="nofollow">http://en.wikipedia.org/wiki/SHA_hash_functions</a></p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/1764837#1764837 0 Answer by unknown (google) for What Code Igniter authentication library is best? unknown (google) 2009-11-19T16:58:40Z 2009-11-19T16:58:40Z <p>Hello,</p> <p>I'm not sure if 'Authentication for CodeIgniter done right' is anywhere available?:) or is it a dream...?:) Thanks fot nice post !:)</p> http://stackoverflow.com/questions/346980/what-code-igniter-authentication-library-is-best/1810271#1810271 0 Answer by musoNic80 for What Code Igniter authentication library is best? musoNic80 2009-11-27T19:08:21Z 2009-11-27T19:08:21Z <p>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.</p>