this is the globa.asa file to a web page that access our database.
*************************************
<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Sub Session_OnStart
session("Server"
= "DSN=***;UID=***;PWD=*******;"
End Sub
</SCRIPT>
**********************************************
If a hacker broke into our server, they can view the glogal.asa file and get the password to our DB. Once they have the password they can wrek havoc...is there a better way?
*************************************
<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Sub Session_OnStart
session("Server"
End Sub
</SCRIPT>
**********************************************
If a hacker broke into our server, they can view the glogal.asa file and get the password to our DB. Once they have the password they can wrek havoc...is there a better way?