Hi list; please help settle a debated question at work about SSL implemention as a form target on a non-HTTPS page.
Consider main page:
Their login window (upper-right) runs using the following code for the form:
As you can see, the form's ACTION is
My question is... if you submit your login credentials from an HTTP page where the form action target is HTTPS/SSL, are your credentials potentially compromised or not? This is as opposed to a scenario where the login logic appeared on a main page that is HTTPS/SSL already.
One side argues that submitting this login box with empty credentials is best because it errors out to an HTTPS main page where the credentials can be submitted under "true" HTTPS/SSL.
The other side argues that the HTTPS for the form action target is sufficient to assure the credentials are protected, regardless of the main page being SSL or not.
Thanks!
Dave.
D.E.R. Management - IT Project Management Consulting
Consider main page:
Their login window (upper-right) runs using the following code for the form:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>Login Form</title>
<link rel="stylesheet" type="text/css" href="/common/style/master.css"/>
<link rel="stylesheet" type="text/css" href="/public/style/pub.css"/>
</head>
<body class="loginfields">
<form name="frmLogin" method="post" action="[URL unfurl="true"]https://online.wamu.com/access/oblix/apps/webgate/bin/webgate.dll?/IdentityManagement/postlogon.hdlr"[/URL] target="_parent">
<dl>
<dt>View Your Accounts</dt>
<dd>Log in to your account online:</dd>
<dd>
User Name:
</dd>
<dd>
<input type="text" id="txtUserID" name="txtUserID" maxlength="32" autocomplete="off" class="fieldmedium" tabindex="1" value="Enter user name" onfocus="if(this.value == this.defaultValue) this.value = '';"/>
(.... snip ....)
</form>
</body>
</html>
As you can see, the form's ACTION is
Code:
action="[URL unfurl="true"]https://online.wamu.com......[/URL]
My question is... if you submit your login credentials from an HTTP page where the form action target is HTTPS/SSL, are your credentials potentially compromised or not? This is as opposed to a scenario where the login logic appeared on a main page that is HTTPS/SSL already.
One side argues that submitting this login box with empty credentials is best because it errors out to an HTTPS main page where the credentials can be submitted under "true" HTTPS/SSL.
The other side argues that the HTTPS for the form action target is sufficient to assure the credentials are protected, regardless of the main page being SSL or not.
Thanks!
Dave.
D.E.R. Management - IT Project Management Consulting