Lazy JWT Key Rotation in .NET: Redis-Powered JWKS That Just Works
13 points
1 day ago
| 1 comment
| aaronpina.com
| HN
time4tea
2 hours ago
[-]
The key material is in redis? Seems odd. Should be in fips 140 hsm? Else key can be stolen easy.

Maybe missed something.

reply
a_random_name
2 hours ago
[-]
(glanced at it so I could be wrong) They're talking about a public key that can be used to validate the JWT's authenticity. AFAIK there is no need to keep these secret, and it's not possible to (without breaking public key crypto) forge them so it should be safe to store them wherever.
reply
time4tea
2 hours ago
[-]
From article:

Private key redis key

    public static string PrivateKey(string kid) => $"{Root}:jwks:private:{kid}"; // full private material (short life)
reply
a_random_name
1 hour ago
[-]
TY, that seems like not the best practice.
reply
nijave
2 hours ago
[-]
How can the key be stolen easily? That really depends on the security of the Redis setup. Redis is typically not internet accessible so you'd need some sort of server exploit.

Would have been good if the article example showed a Redis server with TLS and password auth.

reply
time4tea
1 hour ago
[-]
Private key material should not be kept in the clear anywhere, ideally. This includes on your dev machine, serialised in a store, in the heap of your process, anywhere. Of course, it depends on your threat environment, but the article did mention pci-dss. If you put it in redis, then anyone that has access (internal baddies exist too!) can steal the key and sign something. Its hard to repudiate that.
reply
flumpcakes
17 minutes ago
[-]
How far do you go, how do you use the private key to sign something if you can't keep it anywhere?
reply
JackSlateur
13 minutes ago
[-]
TPM

You never have the private key, only the ability to ask something to encrypt/sign something

reply