How can I proctect my .NET application against DLL Hijacking?

后端 未结 6 1174
感动是毒
感动是毒 2021-02-03 13:06

We have a .NET 3.5 application with registered extensions. How can we protect it against DLL Hijacking attacks?

Because of legacy & design problems strong naming

6条回答
  •  天涯浪人
    2021-02-03 13:43

    If your application is meant to be obfuscated, merging the DLL with the EXE first using ILMerge before obfuscation would provide absolute protection against DLL hijacking and also eliminates unused code and gives you a standalone EXE.

提交回复
热议问题