如何在 confuserex 中用密码混淆符号名称?
Posted
技术标签:
【中文标题】如何在 confuserex 中用密码混淆符号名称?【英文标题】:How to obfuscate symbol names with a password in confuserex? 【发布时间】:2021-08-26 15:42:41 【问题描述】:例如,在 Eazfuscator.Net 中,您可以使用
混淆符号名称[assembly: Obfuscation(Feature = "encrypt symbol names with password XPASSWORD", Exclude = false)]
但我想知道如何使用 ConfuserEx 来做到这一点(不管它是否包含代码或应用程序 gui 本身)。
【问题讨论】:
【参考方案1】:答案在 ConfuserEx Wiki Name Protection
例子:
<protection id="rename">
<argument name="mode" value="reversible" />
<argument name="password" value="This password is secret" />
<argument name="renameArgs" value="true" />
<argument name="renEnum" value="true" />
<argument name="flatten" value="true" />
<argument name="forceRen" value="false" />
<argument name="renPublic" value="false" />
<argument name="renPdb" value="true" />
<argument name="renXaml" value="true" />
</protection>
重要的部分是mode
,因为reversible
和password
不需要解释。所有这些都在 .crproj 文件中。
但如果你想在类中使用直接混淆声明,请使用Declarative Obfuscation
【讨论】:
以上是关于如何在 confuserex 中用密码混淆符号名称?的主要内容,如果未能解决你的问题,请参考以下文章