Earlier quoted context omitted.
They tend to be really smart and motivated people. For example, http://lcamtuf.coredump.cx/gcnc/ is not just a good guide to CNC, it's an amazing guide where you realize he learned half the unwritten rules just by thinking about them. http://lcamtuf.coredump.cx/rstory/ for the robots.
That seems like a good pointer, but what does CNC milling have to do with finding bugs in a virtual memory system?
Splitting atoms in XNU
31–37 of 37 posts
Re: Splitting atoms in XNU
#32Earlier quoted context omitted.
They tend to be really smart and motivated people. For example, http://lcamtuf.coredump.cx/gcnc/ is not just a good guide to CNC, it's an amazing guide where you realize he learned half the unwritten rules just by thinking about them. http://lcamtuf.coredump.cx/rstory/ for the robots.
That seems like a good pointer, but what does CNC milling have to do with finding bugs in a virtual memory system?
Re: Splitting atoms in XNU
#33Blows my mind that there’s people who figure this stuff out. Do they just spend their day to day time at work attempting all sorts of variations of this kind of stuff? How often does discovery or research like this lead to a dead end?
Re: Splitting atoms in XNU
#34Blows my mind that there’s people who figure this stuff out. Do they just spend their day to day time at work attempting all sorts of variations of this kind of stuff? How often does discovery or research like this lead to a dead end?
Apple pays handsomely for bugs, they have a bug bounty program (1). At some point there are fewer and fewer exploits and the system becomes harder to crack. All companies who care about security should have security bounty programs. https://motherboard.vice.com/en_us/article/qvapxq/apple-ipho...
I'm guessing the salary must be higher than the rewards or they wouldn't do it tho.
Re: Splitting atoms in XNU
#35Blows my mind that there’s people who figure this stuff out. Do they just spend their day to day time at work attempting all sorts of variations of this kind of stuff? How often does discovery or research like this lead to a dead end?
Presumably they have a large catalog of exploits that they sit on until they have an interesting exploit chain.
Re: Splitting atoms in XNU
#36”Quickly dropping a very important lock and retaking it is a common anti-pattern I've observed across the XNU codebase […] This is trying to detect whether another thread acquired and dropped the lock while this thread dropped it then reacquired it. If so, the code checks whether there's still a vm_map_entry covering the current address its trying to copy and then bails out and looks up the entry again.” I find that…
The trick is you have to assume everything changed under you when you dropped the lock, and recheck everything
Re: Splitting atoms in XNU
#37Earlier quoted context omitted.
Presumably they have a large catalog of exploits that they sit on until they have an interesting exploit chain.
They often need some exploits to get the unencrypted kernel in the first place for analysis. If they were to reveal those exploits, they wouldn't be able to find any more exploits in the future.