AJAyush Jaininayushjjainn.hashnode.dev·1d ago · 14 min readSessions vs JWT vs Cookies: Understanding Authentication ApproachesSome time back I went to AIIMS Jodhpur, that is the All India Institute of Medical Sciences, for a general checkup. And honestly, kya baat hai, the whole experience was surprisingly nice. So many staf00
RMRenukashree Muraliinquietbytes.hashnode.dev·2d ago · 5 min readBuilding a Concurrent JWT Validator in Go - and What It Taught Me About Go's Concurrency ModelDraft note: being written stage by stage as the project progresses. Sections below will grow; this note comes out before publishing. A companion build to JWT Attack Lab — eight parts spent breaking a00
AJAyush Jaininayushjjainn.hashnode.dev·2d ago · 15 min readJWT Authentication in Node.js Explained SimplySome time back, an old school friend of mine got me invited to a formal VIP party in Mumbai. It was not exactly his family's party, it was a proper high-end business party, at the Taj hotel no less, b00
DSDevi Sri Ramasamyindevisriblogs.hashnode.dev·5d ago · 5 min readChargeback Assistant: An AI-Powered Chargeback Risk SystemChargebacks are a common problem for online businesses. When a customer disputes a payment, the merchant needs to decide whether to fight the dispute, accept the loss, or collect more evidence. To sol10
JJebitokinsharonjebitok.com·Sep 6 · 8 min readChallenge: Hammer (TryHackMe)Challenge on TryHackMe: Hammer Introduction Hammer is a web-focused THM challenge that chains together several small missteps into a full authentication bypass and RCE. The box exposes a login portal 00
SMSyed Muhammad Aliindevstacked.hashnode.dev·Aug 30 · 15 min readWhat Is Authentication? A Beginner's Guide (2026)Every time you type your email and password into a login form, something is quietly deciding whether you actually get in. That decision — proving you are who you say you are — is called authentication00
SMSiddhartha Mohapatrainbackend-intro.hashnode.dev·Aug 23 · 2 min readJWT Authentication in Node.js Explained SimplyWhat does authentication mean? Authentication ensures that users accessing an application are who they claim to be. Authentication asks Who are you? then verifies identity. If successful: I know who 00
SMSiddhartha Mohapatrainbackend-intro.hashnode.dev·Aug 21 · 3 min readSessions vs JWT vs Cookies: Understanding Authentication ApproachesWhat are sessions? A session is a feature in Express that lets you maintain state and user-specific data across multiple requests by storing information on the server side under a unique session ident00
AGAmit Giriinammitt.hashnode.dev·Aug 20 · 4 min readJWT vs ASP.NET Identity — When to Use WhichWhen I started building my Job Portal, I faced a question that stopped me for a while: Should I use ASP.NET Identity or JWT for authentication? After researching, building, and breaking things — I fin00
CDCoding Dropletsincodingdroplets.com·Aug 13 · 9 min readCustomizing 401 Responses with JwtBearerEvents in ASP.NET CoreEvery error your ASP.NET Core API returns is a documented, structured Problem Details payload. Except one. When a bearer token is missing, expired, or malformed, the client gets a 401 with an empty bo00