What? A DNS lookup doesn't include anything but the hostname and anything following a hash is never sent with a request from the browser.
https://docs.google.com/document/d/1YHcl1-vE_ZnZ0kL2almeikAj...
61–70 of 159 posts
What? A DNS lookup doesn't include anything but the hostname and anything following a hash is never sent with a request from the browser.
https://docs.google.com/document/d/1YHcl1-vE_ZnZ0kL2almeikAj...
Uhhhhh, you do realize the anchor (#...) is not sent to the server, right?
The article says the folks at Google have this short docs to address the concerns: Scroll-to-text Fragment Navigation - Security Issues https://docs.google.com/document/d/1YHcl1-vE_ZnZ0kL2almeikAj...
I don't have access to this document, is there a mirror?
IE6 is back, baby! All that’s left is deep integration with some proprietary Google “standard” (I’m thinking AMP) and it’ll be the early 2000s all over again.
The quote about DNS seems wrong to me ""Consider a situation where I can view DNS traffic (e.g. company network), and I send a link to the company health portal, with #:~:text=cancer," he wrote. "On certain page layouts, I might be able [to] tell if the employee has cancer by looking for lower-on-the-page resources being requested."" I thought DNS requests just get the domain, not the hash and not even the page reque…
Kind of an edge case privacy issue, IMO. Imagine if the page has 10 parts. Part 1 has an image reference hosted on part1.imagehost.xyz, but loaded lazily. Each part has something analogous, an image hosted on a different domain, but loaded lazily (so, no requests before that part of the page is visible). If you open the page and read from the top, the browser will open with part 1, Javascript will fire and tell the b…
I am not a web dev so I'd love to hear someone with more knowledge spell out some other privacy concerns.
The quote about DNS seems wrong to me ""Consider a situation where I can view DNS traffic (e.g. company network), and I send a link to the company health portal, with #:~:text=cancer," he wrote. "On certain page layouts, I might be able [to] tell if the employee has cancer by looking for lower-on-the-page resources being requested."" I thought DNS requests just get the domain, not the hash and not even the page reque…
The github issue has more actual examples. The important bit is the "looking for lower-on-the-page resources being requested." bit. You can't necessarily tell anything from that lone DNS request. But after loading the page, the user's browser will go on to send requests for elements on the page, and anything JS wants to grab based on position, which can be a channel for information. Example: 99% of your employees' DN…
If I'm understanding his correctly, google actually changes the HTML to have these anchor tags?
Though, I'm curious how this works when text is broken apart over spans or divs.