I hope this is the right place for it, please move if needed.
Is there anyway to log into the forums securely over https? I get nervous about logging whenever I am on a public network as it is fairly trivial to snoop that stuff.
Unfortunately not that I'm aware - just don't post anything you're not comfortable with being out there under this name and don'tuse a password you use for anything else.
Willeth on
@vgreminders - Don't miss out on timed events in gaming! @gamefacts - Totally and utterly true gaming facts on the regular!
Full SSL is a chore. I have to maintain a valid cert and it really grinds a server's CPU to do encryption in software.
Now that said, I don't know if you noticed, but when you submit the login form, your password disappears right before submission. The webpage does a client side hashing of your password and then sends that MD5 sum over the wire instead of your actual password.
The vBulletin implementation does follow the challenge/response paradigm for authentication over an untrusted medium
Getting back to your question, if your browser has javascript support then your password is not being sent in clear text. While their implementation isn't stellar, it gets the job done.
Full SSL is a chore. I have to maintain a valid cert and it really grinds a server's CPU to do encryption in software.
Now that said, I don't know if you noticed, but when you submit the login form, your password disappears right before submission. The webpage does a client side hashing of your password and then sends that MD5 sum over the wire instead of your actual password.
The vBulletin implementation does follow the challenge/response paradigm for authentication over an untrusted medium
Getting back to your question, if your browser has javascript support then your password is not being sent in clear text. While their implementation isn't stellar, it gets the job done.
-alpha
Yeah I did notice that it was MD5 hashed when I was watching it in wireshark. Better then sending it plain text. I've read up on MD5, apparently their are some flaws, like you said SHA256 is recommend.
Posts
@gamefacts - Totally and utterly true gaming facts on the regular!
Now that said, I don't know if you noticed, but when you submit the login form, your password disappears right before submission. The webpage does a client side hashing of your password and then sends that MD5 sum over the wire instead of your actual password. I implemented one of these a long time ago in our custom phpBB board.
Legitimate security concerns:
Getting back to your question, if your browser has javascript support then your password is not being sent in clear text. While their implementation isn't stellar, it gets the job done.
-alpha
Yeah I did notice that it was MD5 hashed when I was watching it in wireshark. Better then sending it plain text. I've read up on MD5, apparently their are some flaws, like you said SHA256 is recommend.
Thanks for the response.