caduh

Posts tagged “security

Tiny explainers grouped by topic. Spend less time Googling, more time building.

Structured Logging That Survives Production

How to make logs useful under real traffic: correlation IDs, JSON event shape, sampling rules, and PII redaction that does not depend on everyone remembering.

devobservabilitylogging

CORS Explained Without Cargo Culting

What actually breaks in CORS, which headers matter, and the server configs that fix browser errors without accidentally opening your API.

devsecurityweb

Secrets Management That Survives Production

Env vars are only the beginning. This covers secret managers, rotation, least privilege, and delivery patterns that do not leak credentials across your stack.

devsecuritysecrets

CSRF Still Matters

CSRF never really left. Here’s how SameSite cookies, synchronizer tokens, custom headers, and Fetch Metadata fit together in modern apps.

devsecuritycsrf

RBAC vs ABAC vs ReBAC

Most teams do not need every authorization model. This shows where RBAC, ABAC, and ReBAC fit, and what gets painful later if you pick the wrong one.

devauthauthorization

Passkeys / WebAuthn in Practice

What shipping passkeys actually involves: registration, sign-in, recovery, account settings, and the RP ID/origin mistakes that break rollouts.

devauthpasskeys

Session Cookies vs JWTs vs PASETO

Three ways to carry auth state, three different tradeoffs. Here’s where session cookies, JWTs, and PASETO fit without stateless-auth cargo culting.

devauthsecurity

OAuth 2.1 & OpenID Connect for Builders

The auth stack most teams inherit, minus the jargon: code + PKCE, refresh tokens, ID tokens, and machine-to-machine flows that actually matter.

devauthoauth

JWTs — Expiration, Rotation, and Revocation

Design access + refresh flows that are safe: short-lived access tokens, rotating refresh tokens with reuse detection, device-scoped sessions, and practical revocation strategies.

devsecurityauth

Securely Managing Environment Variables (The Right Way)

Why you shouldn’t commit .env files, how to handle secrets differently in local, staging, and production, and the exact patterns to inject, validate, rotate, and audit configuration safely.

devsecuritysecrets

SSH Keys, Minus the Mystery

Generate a key, load it into `ssh-agent`, add it to a server, and clean up your SSH config without the usual trial and error.

devsecurityssh