this post was submitted on 23 Sep 2023
514 points (95.6% liked)
Memes
45923 readers
1493 users here now
Rules:
- Be civil and nice.
- Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
expired
Fair point, I made the meme to be silly, and, yes, this is one of the many reasons why tokens in general should expire after some point in time.
Also the meme isn’t wrong, memes don’t need logic, they’re supposed to give people a giggle.
expired
To be Frank, who I am not (I'm Hai), I can't tell if you're a troll or not. Although, if you're not, my meme is not "wrong" or spreading misinformation it contains a logical fallacy, as many jokes do. I can list jokes that contain logical fallacies upon request.
Bruh, pointing out that "you're spreading out misinformation as a joke" isn't trolling. I'd recommend going out to touch grass, but given how thin your skin is, I am afraid you're at aggravated risks of third degree burns from the slightest sun exposure, even during a cloudy day. So I'll recommend for you to wear a thick coat and go see a dermatologist instead.
P.S.: nice pun, I loled.
This was the funniest thing I read all day, thank you. Sorry for misunderstanding your tone.
Look at this guy over here, nerding out about the WiFi.
Jk, glad to find someone in the comments correcting the misinformation in the meme. OP is probably a hacker who likes to do session hijacking.
Not a hacker, just a silly goofball.
JWT sounds great on paper until you have to deal with logout and revocations. Might as well use standard session cookies.
It is a great idea, but like most implementations using cryptography in new applications with novel concepts (like cryptocurrencies), it's half assed, and people are so eager to release and use it that they forego any simulation, testing and staging of their design; so we only get to find about any shortcomings, inefficiencies, or even design mistakes, once said tech has become big and popular (and consequently, a pain to fix and patch).
Fr my thoughts exactly
And what happens next time they load the site?
If the cookie was saved in any way (maliciously or not: session hijacking, restored backup, etc), they are logged in. That's exactly the problem, thanks for pointing it out.
If they had "logged off" (or closed the session), no amount of cookie resurrection would log them back in: the server would refuse that cookie session the same way it would refuse an expired password.
@7heo @tdawg, i only keep data from sites which i visit every day, no other, using Site Bleacher, it remove automatically cookies, local storages, IndexedDBs, service workers, cache storages, filesystems and webSQLs from all not whitelisted sites. This keeps clean the browser and HD.
https://github.com/wooque/site-bleacher
Similar alternative
https://github.com/Cookie-AutoDelete/Cookie-AutoDelete
Yeah, so lemme show you a few tools since we're on the topic of sharing.
winfr
,testdisk
, etc).Please log out from apps and websites!
What about incognito sessions?
expired
Yeah, that's what I was curious about, the security issues you mentioned as I wasn't clear in my understanding until now. Thanks.
Yeah you really should do both. Some session cookies can just be used as tracking cookies later.
Just start with closing the session, eh? Otherwise the app won't know what session to close.
And hopefully when the session is destroyed on the server, the app also deletes the client cookie. Assuming there will never be any server bugs, so that keeping the previous
SessionIDs
around on the client is "no problem", sounds like your average "famous last words" occurrence.