Quote:
Originally Posted by estación seca
Have you looked into OrchidBoard's antique software? My browser warns me login is not secure and the password is easily visible.
|
I don't have access to the software; I have however looked at a network packet trace of an attempt to login to orchidboard over plain http, using a bogus name that doesn't exist ("toto") and password "mypassword".
In the http form POST request we see the following variables being sent (along with a few others):
vb_login_username = "toto"
vb_login_password = ""
vb_login_md5password = "34819d7beeabb9260a5c854bc85b3e44"
So we can see that the clear text username is sent, but not the clear text password. We can verify that the md5 of the password is correct:
$ echo -n mypassword | md5sum
34819d7beeabb9260a5c854bc85b3e44 -
But regardless, it's still a very bad idea to login to anything using insecure http.