"Its not stated here what the password field is used for, or why it is required. I was told by an Adobe employee at CFUnited 2008 that it was used to recreate the login in clustered environments. An explanation of this process might be useful." - http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_j-l_08.html

So actually why does <cfloginuser> require a password attribute??

link|improve this question

feedback

2 Answers

cfloginuser is used in combination with cflogin to log a user into your application. You use either a form submission with username and password values, basic authentication or NTLM authentication. All of these require a username and password.

link|improve this answer
but usually the code inside of cflogin will take care of authenticating the user through #flogin.name# and #cflogin.password#, why do I need to store the password at cfloginuser (i.e. after I've authenticated the user)? – Henry Feb 25 '11 at 2:58
1  
yeah, cflogin doesn't actually perform the authentication. it just tells the application about the user. – Sean Coyne Feb 25 '11 at 3:02
ya, so... why does cfloginuser requires the password exactly? AFAIK it still works fine if I only pass in an empty string for every user, thx – Henry Feb 25 '11 at 8:21
the better question is why are you using it? it has its quirks, and once you move past very basic authentication and security you reach its limits very quickly. ultimately, more often than not, you end up refactoring to a custom solution. Its easy enough to implement a basic security system that matches cflogin's functionality, so rather than build it twice, why not build it yourself the first time and allow yourself room for future growth. – Sean Coyne Feb 25 '11 at 15:41
@Sean What are the 'quirks'? I have not experienced them so far. I even asked the question some time ago stackoverflow.com/questions/604909/why-dont-people-use-cflogin and the only 'quirks' regarding cannot logout a HTTP basic authentication is busted. – Henry Feb 25 '11 at 18:07
show 4 more comments
feedback
up vote 1 down vote accepted

Password is used for the base64 string

see: CFLogin Security Considerations

But why is the password needed for the base64 string? I don't know...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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