|
-
May 19th, 2002, 09:05 PM
#1
Member
ASP session objects
Can Session object protected sites be hacked?
For example:
<!--This is the login page. If the correct uid and pwd
are entered then a session object is created-->
<%
If Request("User") = "Tom" And Request("Pwd") = "secret" Then
Session(Access") = "Granted"
End If
%>
Then at the top private.asp
<%
If Session(Access") <> "Granted" Then
Response.Redirect("Logon.asp")
End If
%>
<html>
...
THanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|