this post was submitted on 28 Aug 2024
2235 points (99.3% liked)

Technology

58072 readers
3419 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 2 weeks ago (2 children)

Does this stop me from adding to my website an iframe to facebook where facebook can keep its cookies for my user? That would be great but I doubt it.

[–] [email protected] 5 points 2 weeks ago (2 children)

IIRC an iframe contents is treated as a separate window, so cookies aren’t shared either

[–] [email protected] 6 points 2 weeks ago (1 children)
[–] [email protected] 2 points 2 weeks ago

That’s horrific WHY?

do not add any event listeners for message events. This is a completely foolproof way to avoid security problems. 🤡🤡🤡🤡🤡🤡🤡🤡🤡🤡🤡

[–] [email protected] 2 points 2 weeks ago (1 children)

Sure, but the separate window can be on a different domain. Now you have a way to share cookies across multiple websites on different domains if all of them include an iframe to this external domain. And you can use in-browser messages (see window.postMessage()) to communicate between iframes and main window.

[–] [email protected] 3 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

I haven't worked with HTML since 1999; I hate that I'm just now finding out that iframes are somehow still a thing in the modern world. What the actual fuck. Why? Don't we have some fancy HTML5 or Ajax or something that can replace them?

[–] [email protected] 2 points 2 weeks ago

Yeah i don't know why, probably exactly because is such a neglected feature that it offers workarounds for some limitations, like in the case of cookie-related patterns.

[–] [email protected] 1 points 2 weeks ago

HTML5 can store HTML files inside of HTML files, allowing you to do what an iframe does but with a static (or updated when the page refreshes or whatever) html page

AJAX also has something that can replace iframes

But iframes continue to exist likely for legacy and how easy it is to get a basic page running using them for home projects