How to protect a kernel module from reverse engineering?
I implemented a feature through a kernel module, and deployed it on multiple machines by distributing the *.ko file. I hope that users who receive the *.ko file cannot obtain any information such as function names, function logic, global variables, etc., through reverse engineering.
How can I protect a kernel module from reverse engineering?
I implemented a feature through a kernel module, and deployed it on multiple machines by distributing the *.ko file. I hope that users who receive the *.ko file cannot obtain any information such as function names, function logic, global variables, etc., through reverse engineering.