Security
To begin with all, all data is passed via https protocol. I have to log each user into two different systems. I have a login screen that takes username & password. This posts to an asp page that validates the user in a database. If the user is validated, the following code is used to send the username/password to the second system for additional validation.
======Seamless Login Code===============
%>
<form name=LoginBridge action='Validate.aspx' method='post'>
<input type='hidden' name='usr_Name' value='<%Response.Write(strUserName)%>'>
<input type='hidden' name='usr_Password' value='<%Response.Write(strUserPassword)%>'>
</form>
<script language=javascript>
document.LoginBridge.submit()
</script>
<%
Please note that the second system exists because we are in the process of migrating to the sole use of this system. I think there will be a 6 month to 1 year migration time frame.
I would like to know how vurnerable it is to pass each user's username/password via https protocol.
|