vote up 0 vote down star

If i use restful_authentication in my ruby on rails app are passwords transfered between the broswer and the server in paintext? And if so how worried should I be about it?

flag

43% accept rate

4 Answers

vote up 2 vote down

Well, you need to be worried if you are not hosting it over HTTPS... because if it is straight HTTP, then yes it is being passed in plaintext.

I don't know Rails specifically, but I'm pretty sure it has nothing to do with whether you host it via HTTP or HTTPS.

Edit: I found this link which apparently provides an example Rails app over HTTPS.

Further Edit: Here is another link discussing HTTPS with Rails.

link|flag
vote up 0 vote down

How does restful_authentication work? Do you have any pointers?

link|flag
Here's two helpful links: railscasts.com/episodes/67 wiki.rubyonrails.org/rails/pages/… I'd link them but right now everything in comments appear to be escaped out. – Chris Bunch Sep 10 '08 at 7:05
vote up 0 vote down

Authentication with plain text can be done with CHAP style protocols. Is that possible over HTTP?

I'm asking, because I think that it would need some state on the server to foil replay-attacks - state on the server is something to be eliminated with RESTful architectures, right?

link|flag
vote up 2 vote down

If you are concerned about the privacy of passwords (and you should be), you will also want to add this line to your ApplicationController:

filter_parameter_logging :password

Otherwise the passwords will end up in plain text in your log files.

link|flag

Your Answer

Get an OpenID
or

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