Practices for hiding the executable code of compiled applications

后端 未结 6 1642
梦谈多话
梦谈多话 2021-01-14 13:38

It\'s a standard practice to decompile and reverse engineer .net assemblies.

I\'d like to release some plugin assemblies that will add to existing applications, but

6条回答
  •  误落风尘
    2021-01-14 14:22

    You can write an app that will host CLR using the CLR COM api, that way you can first load and decode the assembly at the native code level. If you reinforce the native loader using several anti-reverse engeneering techniques, you can achieve good enough security.

提交回复
热议问题