Obfuscating ASP.Net dll breaks web application

前端 未结 4 1984
北荒
北荒 2021-01-15 08:39

I wouldn\'t usually bother to obfuscate a web application DLL but right now I have to share some server space with someone who might have a conflict of interest and might be

4条回答
  •  独厮守ぢ
    2021-01-15 09:20

    For asp.net I don't know of a quick way out. The quickest way I've found is Secure Team's code protection functionality. It leaves the interface but encrypts all the il and makes it hard for someone to reverse it.

    Asp.net is tricky due to all the dynamic resolving and reflection used once you start changing the names of things it becomes fragile and in the need of a whole other round of testing to make sure everything loads and nothing breaks.

提交回复
热议问题