When application have
authentication feature then it is very important to manage the session securely.
There are multiple vulnerabilities occurs due to misconfiguration of session. Mainly
application manages the session via cookie which we can also say session ID. A
session ID is a unique number assigned to identify a user accessing a web
application. The application usually creates a session cookie and session ID
for each valid session, and these cookies can contain sensitive data like
username, password, etc. It is important to maintain the confidentiality of a
session ID so other users or attackers do not use it to access the same account.
On logout and on browser close event session cookie should be invalidated at
server, so that it can not be reuse and for each session there should be new cookie.