• Jesus_666@lemmy.world
    link
    fedilink
    English
    arrow-up
    13
    ·
    edit-2
    11 hours ago

    I read about this a while ago and people then concluded that FROST is harder to exploit in real-world scenarios than in the lab. Still worth addressing and a fix shouldn’t be too difficult, e.g. by adding small amounts of random latency to OPFS accesses. Firefox already does this with other APIs to make fingerprinting harder. Chromium doesn’t because they love fingerprinting.

    Honestly, I’m not thrilled with the OPFS model in general. Each page can randomly occupy part of your storage with you having no control over the process. You don’t get asked. You can’t even inspect the data. Even if it turns out to be useless for fingerprinting, the ability to use your storage invisibly with zero effort is not a power I want to hand out like candy in an environment that supposedly is assumed to be adversarial by default.

    The only upside is that browsers do have a quota which is apparently shared between all instances of IndexedDB and OPFS. So the threat model of “use OPFS to fill up the user’s entire storage” isn’t plausible per se even if you have multiple tabs to attack with. Filling up the storage to evict other sites’ stored data might actually work, though, and while it sounds like more of an annoyance, it might also become a step in some other attack.

    Besides, quota size is entirely up to the browser; while Firefox uses 10% of total storage or 10 GB, whichever is lower, Chromium can in principle take up to 60% of total storage. When I tried, both a Firefox-based browser and a Chromium-based one had quotas of exactly 10 GB; I suspect that my distro’s packagers configured the latter when the built the browser package.

  • DominusOfMegadeus@sh.itjust.works
    link
    fedilink
    arrow-up
    36
    ·
    16 hours ago

    The researchers responsibly disclosed FROST to Google, Apple, and Mozilla before publishing. The responses are worth reading carefully:

    • Google said it does not consider browser fingerprinting to be a security vulnerability.

    • Apple described the attack as “currently out of scope,” with possible mitigations in the future.

    • Mozilla acknowledged the findings but has not implemented any fix.

    In other words, the three companies that ship some of the world’s most-used browsers have collectively said “ok, not my concern”.

    Fingerprinting is treated as a known cost of doing business on the modern web, and a side channel that leaks tab and application data through a storage API is, apparently, not a fire worth putting out.

  • Lovable Sidekick@lemmy.world
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    12 hours ago

    Important to note that this has not been seen in the wild yet. From the article this article directly quoted (without attribution):

    “The technique was published by security researchers at Graz University of Technology. There are currently no indications of it being actively used by ad networks or malicious actors.” [emphasis mine]

    So at this point it seems like when you read, “Company X unveils new fusion reactor” and it means a new design for one. You probably aren’t being surveilled with this yet.

    We now return you to your regularly scheduled dystopian panic mode.

  • Joël de Bruijn@lemmy.ml
    link
    fedilink
    arrow-up
    20
    ·
    15 hours ago

    Oh wow … stating this is just regular fingerprinting is out of touch.

    Its like my electric energy supplier analyzing current data and knowing brand, model and type of dishwasher and fridge. Which they can.

    • unwarlikeExtortion@lemmy.ml
      link
      fedilink
      arrow-up
      7
      ·
      14 hours ago

      That’s putting it mildly.

      It’s if they’d know the exact food in your fridge and where you got it from. Or the exact makeup of the clothes you buy. Oh, kid’s clothes? What a lovley daughter you have! Would you like some educational material targeted for 4-8 year-olds?

      And aren’t you expecting another one?

      Use a blender? What lovely strawberry milkshakes you like for breakfast. Why not tell the store most of your food comes from to raise their prices a bit, since it seems to be a trend in your city?

      Do you have meds in the fridge? Well, these items are often sold together, have a look. Oh, and a price increase.

  • nosuchanon@lemmy.world
    cake
    link
    fedilink
    arrow-up
    6
    ·
    14 hours ago

    So ifI run a hardened Firefox inside a docker container and spoof any identifying information and run no other tabs or programs, will that limit exposure?

    • unwarlikeExtortion@lemmy.ml
      link
      fedilink
      arrow-up
      4
      ·
      13 hours ago

      Probably not. AFAIK docker isn’t a virtual machine in the traditional sense that it has its reserved storage other apps on the machine can’t access. And even if it were, it’s the same physical drive.

      Now I’m not too versed myself in SSD firmware so maybe the large file size really is like a wide net, or maybe the file size isn’t important - only the fact you’re doing read operations on a small space on the SSD may give enough volatility in the read speed to infer the exact app that decided to spin up at that moment.

      The simplest fix that comes to mind is to have multiple drives (e.g. install and data) and put the browser on the data one. Maybe this added complexity can throw off some naive attacks. Also, a HDD “naturally” has some variability in the access time (since it needs to physically locate the sector with its read heads).

      So in essence, laptops with a single SSD are by far the most vulnerable.

      However, adding sane limits on the vulnerable API mentioned and throttling read/write speeds (ideally with randomization) seems like a fix good even for single-drive laptops.

      What’d probably work with Docker is a similar read speed throttling setup.

      Spoofing identifying information won’t help much since read time variability is what matters here. It may make it take more info to infer performance rather than having the transparent information, but a good model is bound to infer pretty well after some initial data.

  • Serinus@lemmy.world
    link
    fedilink
    arrow-up
    5
    ·
    15 hours ago

    A bit overstated. I’d be very skeptical about this being useful in a real world situation.

    Something worth noting, but not to get too worked up over. Firefox will probably address it at some point.