如何查看使用 .net 混淆器的结果?
我已经下载并安装了 Eazfuscator,然后将我的项目拖放到 Eazfuscator 中指定的绿色字段中。然后我在发布模式和发布文件夹中重建我的解决方案。使用 Total Commander,我在 dll 上按 F4,我仍然可以看到我用 c# 编写的所有 sql 查询。我认为 eazfuscator 隐藏了所有查询和所有方法名称(方法名称也可见)?
I've downloaded Eazfuscator, installed it, and drag and drop my project into the indicated green field in Eazfuscator. Then I rebuild my solution in release mode and in Release folder. Using Total Commander, I press F4 on the dll and I can still see all the sql queries which I wrote in c#. I thought that eazfuscator hid all queries and all method names (method names are visible also)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
代码混淆和加密是两个不同的事情。
混淆器不一定会对代码中的字符串进行加密。它(基本上)重命名类、方法、参数和变量,从而混淆代码的意图。分配的值(如字符串)保持不变。
据我所知,Eazfuscator 具有字符串加密功能,但我不知道是否必须以某种方式配置它。
Code obfuscation and encryption are two different things.
An obfuscator doesn't necessarily encrypt the strings in your code. It (basically) renames classes, methods, parameters and variables so that the intent of your code is obfuscated. The assigned values like strings stay the same.
As far as I can tell Eazfuscator features string encryption, but I don't know if it has to be configured in some way.