slickwillyslim
Programmer
i have an online store just about ready to go up. users can register and set a unique user/pass to login with. my site is encrypted with SSL. however only certain pages are actually secured: order forms, registration, etc. let's say for instance a user who's already registered with me starts a session (comes to the site). now, my sign-in page and user/pass authentication page are encrypted. but, when the user is logged in, he/she is free to navigate (unsecured - http) throughout the site and add multiple items to the cart. my site uses no cookies, sessions only, so the only way i can think of to track the user through the site is with a userID session and a password session. therefore, when the user decides to checkout, these session variables can be used to access the user's personal information, of course then returning to https for security. my question is how safe is this? can a hacker easily read a server-side session variable to steal the user/pass and gain access to credit card information and such? i've heard of encrypted cookies, but i use classic ASP, and have no idea how to create one. any suggestions would be GREATLY appreciated. thanks guys.