Hacker News new | ask | show | jobs
by mysterydip 28 days ago
while not root cause, wouldn’t a module having corrupted memory still be an issue with either the OS (for not protecting it) or the module (for not sanitizing input)?
1 comments

No, because this would be kernel level code, so anything else running in the kernel (other drivers) could stomp on your memory and you couldn't do anything about it. No OS protections here.
Ah that makes sense, thanks!