HTTP sessions
HTTP sessions are used to store information for HTTP requests that make browsing persistent. For example session information may contain information such as user logged in or not.
HTTP sessions use cookie files to store data. Session id is randomized therefore cookie filename will also be randomized.
Typically a session data is deleted after a web browser gets closed. However browser cookies can be used along with session data which can make online behavior persistent even after a web browser is closed and reopened.

Comments
Post a Comment