Terminology Index

Glossary

2953 terms

Open concept maps
T
32

Tokens

From a defensive-web lens, the credentials web applications use to track sessions and authorize actions, cookies, session tokens, CSRF tokens, JWTs, that defenders inspect and protect.

Web applications use tokens for many things: session cookies that maintain login, CSRF tokens that defend against cross-site request forgery, JWTs that carry claims, OAuth tokens that authorize API access. From a defensive-web perspective, understanding what each token does, how it's issued, how it's validated, how it's protected, is foundational to recognizing both legitimate flows and attacks. Token handling is among the most common sources of web-app security mistakes.

Introduced in: Defensive Web Fundamentals

Examples

  • Inspecting a session cookie's flags (HttpOnly, Secure, SameSite) for protection.
  • Recognizing a CSRF token's role in defending request integrity.
  • Reviewing JWT claims and signature validation in an API.