How easy is it to reverse engineer .net obfuscated code?

后端 未结 6 798
南笙
南笙 2021-01-12 07:09

There are a few programs on the market that you can use to obfuscate your .net code, my question is, how easy is it for someone to get at your IP if your code is \"so called

6条回答
  •  心在旅途
    2021-01-12 07:30

    This completely depends on the Obfuscator.

    Obfuscation, in general, does a very good job of making it much more difficult to reverse engineer - but it doesn't prevent it by any means. The CLR will always need to decipher the obfuscated IL, so a dedicated person can always do the same.

    However, most software licensing and protection really does two things:

    • Prevents accidental overusage
    • Prevents casual attempts to circumvent licensing

    Obfuscation (combined with a proper licensing scheme) prevents both of the above very effectively. It changes a simple procedure to a much more complicated task.

提交回复
热议问题