Can I implement a web user authentication system in python without POST? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:49:08Z http://stackoverflow.com/feeds/question/69979 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/69979/can-i-implement-a-web-user-authentication-system-in-python-without-post 1 Can I implement a web user authentication system in python without POST? Alistair 2008-09-16T07:07:42Z 2008-10-15T09:25:06Z <p>My university doesn't support the POST cgi method (I know, it's crazy), and I was hoping to be able to have a system where a user can have a username and password and log in securely. Is this even possible?</p> <p>If it's not, how would you do it with POST? Just out of curiosity.</p> <p>Cheers!</p> http://stackoverflow.com/questions/69979/can-i-implement-a-web-user-authentication-system-in-python-without-post/69989#69989 1 Answer by Vinko Vrsalovic for Can I implement a web user authentication system in python without POST? Vinko Vrsalovic 2008-09-16T07:10:04Z 2008-09-16T07:15:10Z <p>You could use HTTP Authentication, if supported.</p> <p>You'd have to add SSL, as all methods, POST, GET and HTTP Auth (well, except Digest HHTP authentication) send plaintext.</p> <p>GET is basically just like POST, it just has a limit on the amount of data you can send which is usually a lot smaller than POST and a semantic difference which makes GET not a good candidate from that point of view, even if technically they both can do it.</p> <p>As for examples, what are you using? There are many choices in Python, like the cgi module or some framework like Django, CherryPy, and so on</p> http://stackoverflow.com/questions/69979/can-i-implement-a-web-user-authentication-system-in-python-without-post/69995#69995 5 Answer by D.J. Capelis for Can I implement a web user authentication system in python without POST? D.J. Capelis 2008-09-16T07:10:40Z 2008-09-16T07:10:40Z <p>You can actually do it all with GET methods. However, you'll want to use a full challenge response protocol for the logins. (You can hash on the client side using javascript. You just need to send out a unique challenge each time.) You'll also want to use SSL to ensure that no one can see the strings as they go across.</p> <p>In some senses there's no real security difference between GET and POST requests as they both go across in plaintext, in other senses and in practice... GET is are a hell of a lot easier to intercept and is all over most people's logs and your web browser's history. :)</p> <p>(Or as suggested by the other posters, use a different method entirely like HTTP auth, digest auth or some higher level authentication scheme like AD, LDAP, kerberos or shib. However I kinda assumed that if you didn't have POST you wouldn't have these either.)</p> http://stackoverflow.com/questions/69979/can-i-implement-a-web-user-authentication-system-in-python-without-post/70003#70003 0 Answer by deemer for Can I implement a web user authentication system in python without POST? deemer 2008-09-16T07:12:42Z 2008-09-16T07:12:42Z <p>With a bit of JavaScript, you could have the client hash the entered password and a server-generated nonce, and use that in an HTTP GET.</p> http://stackoverflow.com/questions/69979/can-i-implement-a-web-user-authentication-system-in-python-without-post/70025#70025 -1 Answer by Sev for Can I implement a web user authentication system in python without POST? Sev 2008-09-16T07:19:07Z 2008-09-16T07:19:07Z <p>Logging in securely is very subjective. Full 'security' is not easy to achieve (if at all possible...debatable). However, you can come close. </p> <p>If POST is not an option, maybe you can use a directory security method such as .htaccess or windows authentication depending on what system you're on.</p> <p>Both of the above will get you the pop-up window that allows for a username and password to be entered.</p> <p>To use POST as the method to send the login credentials, you'd just use an HTML form with method="post" and retrieve the information from, say, a PHP or ASP page, using the $_POST['varname'] method in PHP or the request.form("varname") method in ASP. From the PHP or ASP page, as an example, you can do a lookup in a database of users, to see if that username/password combination exists, and if so, redirect them to the appropriate page.</p> <p>As reference, use <a href="http://www.w3schools.com/ASP/showasp.asp?filename=demo_simpleform" rel="nofollow">http://www.w3schools.com/ASP/showasp.asp?filename=demo_simpleform</a> for the HTML/ASP portion</p> http://stackoverflow.com/questions/69979/can-i-implement-a-web-user-authentication-system-in-python-without-post/70145#70145 0 Answer by micahwittman for Can I implement a web user authentication system in python without POST? micahwittman 2008-09-16T07:44:03Z 2008-09-16T07:44:03Z <p>A good choice: <a href="http://advosys.ca/viewpoints/2006/08/http-digest-authentication/" rel="nofollow">HTTP Digest authentication</a></p> <p>Harder to pull off well, but an option: <a href="http://blog.paranoidferret.com/index.php/2007/07/22/secure-authentication-without-ssl-using-javascript/" rel="nofollow">Client-side hashing with Javascript</a></p> http://stackoverflow.com/questions/69979/can-i-implement-a-web-user-authentication-system-in-python-without-post/204152#204152 0 Answer by Joe P for Can I implement a web user authentication system in python without POST? Joe P 2008-10-15T09:25:06Z 2008-10-15T09:25:06Z <p>Javascript is the best option in this case.</p> <p>Along with the request for the username and password, it sends a unique random string. You can then use a javascript md5 library to generate a hashed password, by combining the random string and the password [pwhash = md5(randomstring+password)]. The javascript then instantiates the call to <em><a href="http://SERVER/login.cgi?username=TheUsername&amp;random=RANDOMSTRING&amp;pwhash=0123456789abcdef0123456789abcdef" rel="nofollow">http://SERVER/login.cgi?username=TheUsername&amp;random=RANDOMSTRING&amp;pwhash=0123456789abcdef0123456789abcdef</a></em></p> <p>The server must then do two things: Check if the random string has EVER been used before, and it if has, deny the request. (<strong>very important</strong> for security)</p> <p>Lookup the plaintext password for username, and do md5(randomstring+password). If that matches what the user supplied in the URL as a pwhash, then you know it's the user.</p> <p>The reason you check if the random string has ever been used before is to stop a repeat attack. If somebody is able to see the network traffic or the browser history or logs, then they could simply log in again using the same URL, and it doesn't matter whether they know the original password or not.</p> <p>I also recommend putting "Pragma: no-cache" and "Cache-Control: no-cache" at the top of the headers returned by the CGI script, just so that the authenticated session is not stored in the browser's or your ISPs web cache.</p> <p>An even more secure solution would be using proper encryption and Challenge-Response. You tell the server your username, the server sends back a Challenge (some random string encrypted with your password), and you tell the server what the random string was. If you're able to tell the server, then obviously you have the password and are who you say you are! Kerberos does it this way, but quite a lot more carefully to prevent all sorts of attacks.</p>