How would you implement FORM based authentication without a backing database? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T21:53:40Z http://stackoverflow.com/feeds/question/17376 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/17376/how-would-you-implement-form-based-authentication-without-a-backing-database 2 How would you implement FORM based authentication without a backing database? Frank Krueger 2008-08-20T03:27:08Z 2008-09-20T21:44:16Z <p>I have a PHP script that runs as a CGI program and the HTTP <code>Authenticate</code> header gets eaten and spit out. So I would like to implement some kind of FORM based authentication. As an added constraint, there is no database so no session data can be stored.</p> <p>I am very open to having a master username and password. I just need to protect the application from an intruder who doesn't know these credentials.</p> <p>So how would you implement this?</p> <p>Cookies?</p> <p>I could present the form and if it validates, I can send back a cookie that is a hash of the IP address come secret code. Then I can prevent pages from rendering unless the thing decrypts correctly. But I have no idea how to implement that in PHP.</p> http://stackoverflow.com/questions/17376/how-would-you-implement-form-based-authentication-without-a-backing-database/17414#17414 2 Answer by Justin Standard for How would you implement FORM based authentication without a backing database? Justin Standard 2008-08-20T04:37:35Z 2008-08-20T04:43:15Z <p>A few ways you could do this.</p> <ol> <li><a href="http://fragments.turtlemeat.com/htaccess.php" rel="nofollow">htaccess</a> -- have your webserver handle securing the pages in question (not exactly cgi form based though).</li> <li>Use cookies and some sort of hashing algorithm (md5 is good enough) to store the passwords in a flat file where each line in the file is username:passwordhash. Make sure to <a href="http://www.codinghorror.com/blog/archives/000949.html" rel="nofollow">salt</a> your hashes for extra security vs rainbow tables. (This method is a bit naive... be <em>very</em> careful with security if you go this route)</li> <li>use something like a <a href="http://www.sqlite.org/" rel="nofollow">sqlite</a> database just to handle authentication. Sqlite is compact and simple enough that it may still meet your needs even if you don't want a big db backend.</li> </ol> <p>Theoretically, you could also store session data in a flat file, even if you can't have a database.</p> http://stackoverflow.com/questions/17376/how-would-you-implement-form-based-authentication-without-a-backing-database/17419#17419 -1 Answer by Paul for How would you implement FORM based authentication without a backing database? Paul 2008-08-20T04:44:37Z 2008-08-20T04:44:37Z <p>... About salt, add the username in your hash salt will prevent someone who knows your salt and have access to your password file to write a rainbow table and crack number of your users's password.</p> http://stackoverflow.com/questions/17376/how-would-you-implement-form-based-authentication-without-a-backing-database/31869#31869 1 Answer by John Douthat for How would you implement FORM based authentication without a backing database? John Douthat 2008-08-28T08:54:09Z 2008-08-28T08:54:09Z <p>If you're currently using Authenticate, then you may already have an <em>htpasswd</em> file. If you would like to continue using that file, but switch to using FORM based authentication rather than via the Authenticate header, you can use a PHP script to use the same htpasswd file and use sessions to maintain the authentication status. </p> <p>A quick Google search for php htpasswd reveals <a href="http://koivi.com/php-http-auth/" rel="nofollow">this page</a> with a PHP function to check credentials against an htpasswd. You could integrate it (assuming you have sessions set to autostart) with some code like this:</p> <pre><code>// At the top of your 'private' page(s): if($_SESSION['authenticated'] !== TRUE) { header('Location: /login.php'); die(); } // the target of the POST form from login.php if(http_authenticate($_POST['username'], $_POST['password'])) $_SESSION['authenticated'] = TRUE; </code></pre> http://stackoverflow.com/questions/17376/how-would-you-implement-form-based-authentication-without-a-backing-database/109524#109524 1 Answer by brian d foy for How would you implement FORM based authentication without a backing database? brian d foy 2008-09-20T21:44:16Z 2008-09-20T21:44:16Z <p>Do you really need a form? No matter what you do, you're limited by the username and password being known. If they know that, they get your magic cookie that lets them. You want to prevent them seeing the pages if they don't know the secret, and basic authorization does that, is easy to set up, and doesn't require a lot of work on your part. </p> <p>Do you really need to see the Authorization header if the web server takes care of the access control for you?</p> <p>Also, if you're providing the application to a known list of people (rather than the public), you can provide web-server-based access on other factors, such as incoming IP address, client certificates, and many other things that are a matter of configuration rather than programming. If you explained your security constraints, we might be able to offer a better solution.</p> <p>Good luck, :)</p>