We are logging some tracking information to a database table within a classic asp site. One of the pieces of information captured is the users session ID (session.sessionid). Examples of what is captured are:
- 808592330
- 14267388
- 78330403
Then, separately in our IIS logs, session cookies are logged as such (these do not relate to the above examples...I just grabbed from a log i happened to have open):
- ASPSESSIONIDACCDBSTT=FKOFEKICECOLNGLOIFLFINEI
- ASPSESSIONIDACCDBSTT=GLOFEKICEECEFHFFFCFFEPCA
Most important question is, how can I correlate the long sessionID to the "likely encoded and possibly hashed or encrypted" textual representation.
And, secondarily, what are the values appended to ASPSESSIONID representing? (ex. the "ACCDBSTT" in ASPSESSIONIDACCDBSTT)