My site has a common Aplication.cfm tag that checks the log-in status of each user. It saves the ID and token of each user in a cookie, or passes this information through the URL if cookies are not turned on. I think this is how it's usually done. Here is my application management tag:
<CFAPPLICATION name="UserLogin"
SETCLIENTCOOKIES="yes"
SESSIONTIMEOUT="#CreateTimespan(0,0,30,0)#"
SESSIONMANAGEMENT="yes">
I have my own log in for the site, and today have noticed several times that I was mysteriously logged in as someone else. I have to keep logging back in with my own password, and within 15 minutes or so, my log-in state has changed back to this other user again. It's always the same user. I don't know if this is a server glitch, or if someone is hacking. The site's been running for about a year, and I've never experienced this before. Does anyone have any idea how this could be happening?
<CFAPPLICATION name="UserLogin"
SETCLIENTCOOKIES="yes"
SESSIONTIMEOUT="#CreateTimespan(0,0,30,0)#"
SESSIONMANAGEMENT="yes">
I have my own log in for the site, and today have noticed several times that I was mysteriously logged in as someone else. I have to keep logging back in with my own password, and within 15 minutes or so, my log-in state has changed back to this other user again. It's always the same user. I don't know if this is a server glitch, or if someone is hacking. The site's been running for about a year, and I've never experienced this before. Does anyone have any idea how this could be happening?