When machine learning tells the wrong story
11–20 of 32 posts
Re: When machine learning tells the wrong story
#12The article read like a murder mystery where you know who the villain is right in the beginning but you need to find it how they did it!
Marked as favorite.
Re: When machine learning tells the wrong story
#13Earlier quoted context omitted.
My suspicion is that io_uring itself mitigates syscall overhead but doesn't do anything to change interrupts. You could probably do things at the OS level to change interrupt behavior in a way that would mitigate this attack significantly, I'll need to read the paper to see if they discuss this.
Correct. Probably the only way to mitigate interrupt stuff today is what they mentioned - you inject noise into the system intentionally with their example being to make network requests to local addresses. Fundamentally though the challenge is that if you start doing that, you probably start degrading performance fairly quickly for your neighbors. It’s really hard to balance mitigations that retain good performance.…
Re: When machine learning tells the wrong story
#14Re: When machine learning tells the wrong story
#15I hope when Jack is in Oxford he'll also visit Cambridge to give a guest talk in the late Ross Anderson's former group.
Re: When machine learning tells the wrong story
#16I wonder if adopting io_uring on Linux might allow a browser to preserve the privacy a little, in this specific case. (Though it is very hard to get right, unfortunately.)
My suspicion is that io_uring itself mitigates syscall overhead but doesn't do anything to change interrupts. You could probably do things at the OS level to change interrupt behavior in a way that would mitigate this attack significantly, I'll need to read the paper to see if they discuss this.
Maybe we need to do things the other way around? So instead of trying to mask everything we are doing, we run browsers/tabs in a processing environment where the noise can't be measured because it does not occur during the same time window. In audio that is done by using a high priority fixed timer that interrupts the rest of the processing.
My OS knowledge is too marginal to know whether that would be truly feasible, but I can't help to think: yeah it is possible to fix that on a more fundamental level.
Re: When machine learning tells the wrong story
#17Very interesting and well-explained. Given that the research has been out for two years, any interested data collectors have considered this! Forget hackers, this an exploit for enterprises and governments! Could websites concerned with privacy deploy a package that triggers interrupts randomly? Could a browser extension do it for every site?
Our countermeasure which triggers interrupts randomly is implemented as a browser extension, the source code for which is available here: https://github.com/jackcook/bigger-fish
I'm not sure I would recommend it for daily use though, I think our tests showed it slowed page load times down by about 10%.
Re: When machine learning tells the wrong story
#18Re: When machine learning tells the wrong story
#19I think the paper's contributions really don't have anything to do with ML; it's about the new side channel with interrupts, which is a cool find. ML just gets more people to read it, which I guess is ok. I mean, you could just use "statistics" here in much the same way.
I remember an advisor once telling me: once you figure out what a paper is really about, rewrite it, and remove the stuff you used to think it was about. The title of this paper should be about the new side channel, not about the ML story, imho.
But this is just a nitpick. Great work!
Re: When machine learning tells the wrong story
#20Tangent and the smallest of nitpicks about the page: the element's styling with a line of big dots confused me into thinking it was the position indicator of an image carousel!