Authentication
Everything on CoreConcept tagged with Authentication. Explore related tags below.
Related tags
Articles
Selecting the correct authorization flow is essential for securing modern applications. The OAuth 2.1 specification consolidates OAuth 2.0 security recommendati…
A human who logs into a payments dashboard gets a session, a timeout, and a moment of hesitation before clicking submit. An agent that calls the same payments A…
HTTPS and a valid JWT only prove the front door locked. Many real API incidents happen after authentication succeeds: a user changes /orders/42 to /orders/99 an…
Many .NET teams stop at "add [Authorize] and check roles." That covers two of seven authorization models ASP.NET Core ships with — and leaves you reaching for h…
JSON Web Tokens are a common access-token format, but OAuth 2.0 does not require them: providers may issue opaque bearer tokens that an API introspects instead.…
You log out and the admin panel still accepts the old token. Or you build "Sign in with Google" and accidentally treat an access token as proof of identity. Aut…
A partner script scrapes your API with a leaked key. A mobile build ships a password in every header. A "Sign in with GitHub" button works until someone treats …
A mobile app adds "Sign in with Provider," gets back a token, and calls it a login. OAuth 2.0 was never built to answer "who is this user" — it was built to ans…
Single-Page Applications (SPAs) executing inside client-side web browsers are classified by OAuth 2.0 standards as Public Clients. Unlike confidential backend s…
Authentication systems face an inherent security trade-off: short-lived access tokens limit the window of damage if a credential is compromised, but force users…
Want a curated collection instead? Topic hubs group the best content by subject.
Browse Topics