vote up 4 vote down star

It seems that most major websites will use a secure domain, but there are a few major exceptions, notably facebook and twitter.

The benefits of using a secure domain are obvious I suppose - your login credentials are never transmitted in plain text.

So how do major sites like facebook and twitter get away with it? If a secure domain is not available for some reason, what extra precautions might one take?

flag

80% accept rate

4 Answers

vote up 2 vote down check

If security is at all important: Yes, the sign in page must be https, as must the page that it posts to. There simply is no other way.

If you visit a page, and it isn't https, you absolutely can not trust anything submitted from that page. Since the connect is not protecteded, it can be easily tampered with (perhaps by making it submit to a non-https page, or perhaps submitting to an altogether different domain, which you will never know until it is too late). Whereas if you visit an https page, you can trust it. You know where the page originated from and that it hasn't been tampered with. And of course you must submit to an https page, since you want that data to be encrypted (and the browser should warn you if it tries to submit a form from an https page to a non-https page).

link|flag
vote up 5 vote down

Not the page itself, but what it sends the POST to, yes.

In the case of Twitter, you can view their source and notice the page being POST(ed) to is secure with HTTPS.

link|flag
Ah - I think this is what I was missing. So as long as you POST to a secure page, you're not sending anything in plain text. Then facebook/twitter just redirect back to an insecure page after login validation. – Triptych Aug 2 at 4:03
5  
Wrong. You still need to send the sign-in page over a secure connection. Otherwise the sign-in page can be intercepted and rewritten transparently (the user won't be able to tell), causing the username and password to be sent to a malicious site instead of the real site. – Justice Aug 2 at 4:25
1  
This answer is wrong. As a user, I would never submit something from a page that isn't https, after all, how do you know where it will submit to? – Adam Batkin Aug 2 at 4:55
"you can view their source" is not security. Normal users won't do that. Security only works when it is also easy. Also, there could (for example) be some hidden javascript that you might not notice that changes the submission URL. Are you going to audit every line of the login form before submitting? – Adam Batkin Aug 2 at 11:43
Adam, nobody ever said it was "security". I'm simply telling the poster how to verify that it is a secure log in. Have fun with your tinfoil hat. – Chris Stewart Aug 2 at 19:59
vote up 0 vote down

I'm not sure what techniques are commonly used, but any information that isn't stored and only compared (i.e., username and password) could possibly be hashed (for example, SHA1 or MD5) on the client.

However, this requires client-side scripting which might be disabled or otherwise unavailable. It could just be that some sites don't consider their information sensitive enough to require secure transmission (you shouldn't send any sensitive information to Facebook or Twitter, etc.).

link|flag
1  
Since the hashed values are sent in the clear, all anyone would have to do is send the same hashed values back to the server to login. Also, since the client side script is readable, any algorithm to hash the values would be available to a hacker. – Jeffrey Hines Aug 2 at 4:13
vote up 1 vote down

Hashing your password before transmitting it unencrypted doesn't really help in man in the middle situations, since someone who is intercepting the communication can easily replay your password and sign in with your credential.

I would say that some sort of encryption should be mandatory for authentication purposes. Regarding the question, yes, HTTPS would be the best option. Obviously, the most straightforward thing to check for is the location bar at the top if it starts with "https://", but that doesn't actually matter. What matters is where your authentication info (username/password) gets sent, which could be some other page through standard HTML forms, or some JavaScript magic. The best way is to check the source, or enable browser warnings regarding sending of unencrypted data.

HTH

link|flag

Your Answer

Get an OpenID
or

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