Sessionbased
Sessionbased refers to techniques and architectures that maintain state information about a user or client across multiple requests by creating a server-side session. It is commonly used in traditional web applications to manage authentication, user preferences, and transient data without requiring credentials on every request.
In a typical session-based system, a server creates a session when the user authenticates, stores data in
Session data may include identity, roles, locale, shopping cart contents, or other per-user state. Session stores
Security considerations include protecting session cookies (HttpOnly, Secure, SameSite), defending against session fixation and hijacking, rotating
Compared with stateless, token-based approaches, session-based systems maintain server-side state and can simplify revocation and fine-grained