Earlier quoted context omitted.
tags are a more standardized part of the web. Although I should be able to disable auto-buffering as well as auto-play. Ideally the user can control whether all types of content get loaded—images, CSS, JavaScript, web fonts—or even allow/deny individual domains or files, but so far browsers require an extension like uMatrix for that.
The fact that some browsers do allow you to control these things, even if you have to use an extension because they don't support it themselves, is crucially important and totally acceptable. AFAIK there is nothing equivalent to NoScript for IE, however, so that's just one of many reasons I don't use it. I don't really mind the trend in browsers over the last several years to give explicit access to more OS resources…
Show HN: What every browser knows about you
191–200 of 209 posts
Re: Show HN: What every browser knows about you
#192http://webkay.robinlinus.com/scripts/social-media.js that's a cool trick, thanks for this!
Re: Show HN: What every browser knows about you
#193Not much of interest showed up for me. Monitor resolution, browser ID, geo location, OS and public IP. My main browser, Firefox, has uBlock and Self-Destructing Cookies. Tried it in both IE11 and Edge (both of which I never use), and I got pretty much the same result. Firefox and Epiphany on Gentoo Linux also failed to startle me. I'd like to see a screenshot of a "worst case scenario".
> Not much of interest showed up for me. Monitor resolution, browser ID, geo location, OS and public IP. Are you saying it showed your geo location without having prompted for it, and that you're OK with that?
Re: Show HN: What every browser knows about you
#194http://webkay.robinlinus.com/scripts/social-media.js that's a cool trick, thanks for this!
What is this useful for?
Re: Show HN: What every browser knows about you
#195I am a hacker. How the hell does it know my local IP? Via WebRTC I presume?
Re: Show HN: What every browser knows about you
#196Re: Show HN: What every browser knows about you
#197Earlier quoted context omitted.
> Not much of interest showed up for me. Monitor resolution, browser ID, geo location, OS and public IP. Are you saying it showed your geo location without having prompted for it, and that you're OK with that?
I meant whatever DB they use to get location from an IP address.
They aren't using GeoIP lookups. Google runs a service that uses Javascript to try to provide a more accurate position than GeoIP can.
Re: Show HN: What every browser knows about you
#198Earlier quoted context omitted.
What is this useful for?
It helps you figure if a user is signed into a social network. One might think this is not possible because cross-origin restrictions but this trick shows you how to bypass it.
Re: Show HN: What every browser knows about you
#199Earlier quoted context omitted.
It helps you figure if a user is signed into a social network. One might think this is not possible because cross-origin restrictions but this trick shows you how to bypass it.
Could you explain how this works? Er, I mean why only the re-direct to the favicon works?
So, the script creates an (invisible) element for every website which points to the login page (which might redirect to the favicon). If it receives an image, the user is already logged in and the onLoad() callback will fire. Otherwise, it will get an HTML page, so the onError() callback will fire.
It could work with any image on the website, not just the favicon.