Below you will find pages that utilize the taxonomy term “Lua”
April 7, 2025
Evolving Web Authentication(login 1)
Evolving Web Authentication(login 1)
From Simple Cookies to Secure Sessions
In the early days of web applications, servers used a straightforward approach to identify returning users. When you logged in, the server would issue your browser a cookie - a small piece of data that identified you as an authenticated user.
During subsequent visits, your browser automatically submits this cookie with each request. The server would perform a simple check: “Does this request include a cookie named ‘your_name_session’?” If yes, access granted. This basic system worked well initially.