R
rvsw
Hi
I have a question on how mail.yahoo.com webpage works. The answer may
lie in the fact that it uses javascript.
The problem is this:
mail.yahoo.com has two forms - one for signing up for the account and
another for signing into the account using login and password.
The form tag for the latter says
<form method=post action="https://login.yahoo.com/config/login?bkaghhq269hv3"
autocomplete=off name=login_form onsubmit="return
hash(this,'http://login.yahoo.com/config/login')">
The specified form method is thus POST. However, protocol trace always
shows that a GET is being issued. Also the GET is to
http://login.yahoo.com/config/login?bkaghhq269hv3
instead of
https://login.yahoo.com/config/login?bkaghhq269hv3 (i.e to http URL
instead of https URL)
I don't know javascript that much but is it possible that somehow the
form method /action is being altered by javascript
Thanks for any suggestions
I have a question on how mail.yahoo.com webpage works. The answer may
lie in the fact that it uses javascript.
The problem is this:
mail.yahoo.com has two forms - one for signing up for the account and
another for signing into the account using login and password.
The form tag for the latter says
<form method=post action="https://login.yahoo.com/config/login?bkaghhq269hv3"
autocomplete=off name=login_form onsubmit="return
hash(this,'http://login.yahoo.com/config/login')">
The specified form method is thus POST. However, protocol trace always
shows that a GET is being issued. Also the GET is to
http://login.yahoo.com/config/login?bkaghhq269hv3
instead of
https://login.yahoo.com/config/login?bkaghhq269hv3 (i.e to http URL
instead of https URL)
I don't know javascript that much but is it possible that somehow the
form method /action is being altered by javascript
Thanks for any suggestions