fascinating how GrapheneOS achieves high security level on the same hardware where Google failed to even randomize android's kernel location
A 0-click exploit chain for the Pixel 10
21–30 of 255 posts
Re: A 0-click exploit chain for the Pixel 10
#22Semi-related: has the rate of published exploits picked up as if late, or is it simply the fact that there’s hype around ai as security tool (offense or defense) so it’s simply in the news more often? Feels like there’s something new every other day - linux, windows, mobile, various commonplace tools used by everybody, the list goes on
Re: A 0-click exploit chain for the Pixel 10
#23fascinating how GrapheneOS achieves high security level on the same hardware where Google failed to even randomize android's kernel location
Here's a cool project that inventories all your KASLR info leaks: https://github.com/bcoles/kasld
Re: A 0-click exploit chain for the Pixel 10
#24Earlier quoted context omitted.
[flagged]
If this rule were implemented, would you be walking free right now? Think it over.
Re: A 0-click exploit chain for the Pixel 10
#25Semi-related: has the rate of published exploits picked up as if late, or is it simply the fact that there’s hype around ai as security tool (offense or defense) so it’s simply in the news more often? Feels like there’s something new every other day - linux, windows, mobile, various commonplace tools used by everybody, the list goes on
This is pure guesswork, I am not a security researcher, but my guess would be that AI is increasing the amount of low quality exploitable attack surface available, while simultaneously providing security researchers with an accelerant for their work. Which is to say, its great if you use it well and really bad if you use it poorly.
Re: A 0-click exploit chain for the Pixel 10
#26Re: A 0-click exploit chain for the Pixel 10
#27I read about Pixel 9 Dolby Decoder bug, and it is based on integer overflow. It was a mistake to allow "+" operator to overflow, and this must be fixed in new languages like Rust, but it is not.
I've been using this as a touchstone for whether or not we are actually going to take security seriously for a long time. We've moved slightly closer to this, but in a world where we're still arguing over memory safety being necessary we've probably still got a ways to go before we notice that addition silently overflowing is a top-10 security issue. It's the silent top-10 security issue, I guess.
Re: A 0-click exploit chain for the Pixel 10
#28I read about Pixel 9 Dolby Decoder bug, and it is based on integer overflow. It was a mistake to allow "+" operator to overflow, and this must be fixed in new languages like Rust, but it is not.
That said you can enable overflow checks in Rust's release mode. It's literally two lines:
[profile.release]
overflow-checks = true
I wonder if it would make sense for ISAs to have trapping versions of add and subtract. RISC-V's justification for not doing that is that it's only a couple more instructions to check afterwards. It would be interesting to see the performance difference of `overflow-check = true` on high performance RISC-V chips once they are available.Re: A 0-click exploit chain for the Pixel 10
#29Semi-related: has the rate of published exploits picked up as if late, or is it simply the fact that there’s hype around ai as security tool (offense or defense) so it’s simply in the news more often? Feels like there’s something new every other day - linux, windows, mobile, various commonplace tools used by everybody, the list goes on
I've seen quite a few saying that they were inspired by the previous report that is presented as "the model pointed us to it" and you get FOMO about missing out if you don't snatch bugs now as well
Re: A 0-click exploit chain for the Pixel 10
#30Earlier quoted context omitted.
If this rule were implemented, would you be walking free right now? Think it over.
I most definitely don't agree with him, and I find the idea absolutely repugnant. Devils advocate though, I would be much more careful with the code that I write if regulators passed some dogshit law like that.