Terminology Index
Glossary
1801 terms
Showing 1569-1600 of 1801 terms
Stateless Protocol
A protocol where each request is independent and the server keeps no memory of previous requests, like HTTP, which is why applications layer sessions on top to keep users logged in.
A stateless protocol treats every request as independent: the server doesn't inherently remember anything between them. HTTP is the canonical example. Statelessness is great for scale and simplicity, but applications need continuity (a logged-in user), so they add state on top via cookies, tokens, and server-side sessions. Recognizing HTTP's statelessness is foundational web-defense knowledge, since it explains why session management matters so much in web security.
Introduced in: Defensive Web Fundamentals
Examples
- HTTP treating each request as independent without inherent memory.
- Adding cookies and sessions on top to maintain login state.
- Explaining session-security focus by HTTP's underlying statelessness.
No related terms linked yet.
