弄清楚代码混淆了吗?
我正在使用 Eazfuscator.NET 来混淆我的代码..
现在我想确保我的字符串实在是人类无法理解的。
这是它向我显示的字符串:
private static string \u0002 = \u0006.\u0002(107107532);
private static string \u0003 = \u0006.\u0002(107107553);
有人能理解这意味着什么吗?
也许是十六进制值或其他什么?
I'm using Eazfuscator.NET to obfuscate my code..
Now i want to make sure my strings are really impossible to understand by humans.
here is what it shows for me strings:
private static string \u0002 = \u0006.\u0002(107107532);
private static string \u0003 = \u0006.\u0002(107107553);
Can someone understand what this means?
Maybe it's Hexdecimal values or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
\u000#
是一个编码的 unicode 字符。\u0002\
是一个静态类,后面的\u0002
是它的方法之一。没有万无一失的方法可以完全混淆您的代码。任何有足够决心访问它的人都会花费尽可能多的时间来反编译它。
\u000#
is an encoded unicode character.\u0002\
is a static class and\u0002
after that is one of it's methods.There's no surefire way to fully obfuscate your code. Anyone determined enough to access it will spend as much time needed to decompile it.