Please confirm you are human

This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.

A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.

Hold with a pointer, or hold Space or Enter.

News

DEV Community
dev.to > collabier > why-i-stopped-pasting-production-jwts-into-random-websites-and-built-an-offline-tool-suite-instead-k9f

Why I stopped pasting production JWTs into random websites (and built an offline tool suite instead)

1+ hour, 6+ min ago   (356+ words) Be honest: how many times this week have you pasted a bearer token, a customer payload, or an.env config snippet into an online formatter just to quickly see what went wrong? I used to do it constantly. Need to…...

DEV Community
dev.to > darshan_dev > what-happens-when-you-click-login-understanding-authentication-for-beginners-3311

What Happens When You Click “Login”? Understanding Authentication for Beginners

2+ hour, 37+ min ago   (1063+ words) It feels like a simple action. But what actually happens after you click that button? How does the website know that the email and password belong to you? Where does the password go? How does the server remember that you've…...

DEV Community
dev.to > mmushood > jwt-authentication-in-express-that-you-can-actually-revoke-1b7i

JWT Authentication in Express That You Can Actually Revoke

15+ hour, 13+ min ago   (1426+ words) Access tokens, refresh token rotation, and theft detection: the parts most Node.js tutorials leave... Tagged with backend, javascript, node, security....

Medium
medium.com > @rameshkannanyt0078 > jwts-are-not-enough-a-practical-guide-to-api-security-in-fastapi-that-actually-scales-98137a873050

JWTs Are Not Enough: A Practical Guide to API Security in FastAPI That Actually Scales

13+ hour, 16+ min ago   (163+ words) Last year, I watched a production FastAPI API get pwned in 12 minutes. The developer had done everything “by the book” — OAuth2, JWT tokens, HTTPS. And yet, a single refresh token leak brought down an entire fintech dashboard. That day, I learned…...

DEV Community
dev.to > zeeshan_imdad_c76/37/29732e > i-got-tired-of-pasting-jwts-into-random-websites-so-i-built-my-own-tools-4hh5

I pasted a production JWT into a random website. Then I read their privacy policy.

19+ hour, 32+ min ago   (415+ words) I'd like to tell you this was a one-time lapse. It wasn't. I do it constantly. A JWT to check what's in the payload. A chunk of JSON to pretty-print because the API response came back on one line. A…...

Medium
medium.com > @agentflowlab > why-i-stopped-storing-jwts-in-localstorage-and-what-i-built-instead-3d14dd421c7b

Why I Stopped Storing JWTs in LocalStorage (And What I Built Instead)

19+ hour, 2+ min ago   (396+ words) A practical breakdown of XSS vulnerability vectors, HttpOnly cookies, and refresh token rotation in production Node.js apps. A …...

DEV Community
dev.to > fuadhusnan_f44f3e13 > why-cloud-storage-needs-more-than-just-a-password-119h

Why Cloud Storage Needs More Than Just a Password

1+ day, 4+ hour ago   (672+ words) Passwords were designed for a simpler threat model: one person, one device, one login screen. They work reasonably well against random guessing. They work poorly against phishing kits that clone login pages in minutes, credential-stuffing bots that test billions of…...

DEV Community
dev.to > stackhorizon > jwt-auth-without-the-confusion-42bl

JWT auth without the confusion

3+ day, 12+ hour ago   (218+ words) JWT is just a token format. It is not authentication, not a session, and not a database. Once you separate those ideas, most of the pain disappears. A JWT is a JSON object that is signed. That's it. The payload…...

Medium
medium.com > javarevisited > understand-sigle-sign-on-with-kerberos-7cca60da348e

Understand Sigle Sign On with Kerberos

3+ day, 16+ hour ago   (30+ words) How It works? To understand the workflow, we need to first define some terms thats gonna use in entire flow. AS → Authentication Server / Kerberos …...

DEV Community
dev.to > virendravyas > two-jwt-bearer-schemes-one-api-a-real-aspnet-core-setup-92k

Two JWT Bearer Schemes, One API: A Real ASP.NET Core Setup

4+ day, 12+ hour ago   (161+ words) Each scheme gets a distinct name, and [Authorize(AuthenticationSchemes = "UserTokenScheme")] on a controller or action routes that specific endpoint to check the right token, extracted from the right place. This is the part that actually cost the time. By default,…...