且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何识别混淆的代码

更新时间:2023-12-03 22:43:40

混淆的整个思想是使其难以阅读-因此,如果您在阅读时无法阅读代码对其进行反向工程,可能会混淆.

否则您不是很擅长阅读反向工程代码.可能两者兼而有之. :laugh:
The whole idea of obfuscation is to make it hard to read - so if you can''t read the code when you reverse engineer it, it is probably obfuscated.

Or you aren''t very good at reading reverse engineered code. Could be both. :laugh:


在Reflector或类似产品中打开EXE或DLL文件,并查看程序集内部.

如果您看到以下内容,则可能会感到困惑:
-具有非英语/可读字符的私人/内部名称(反射器中的灰色名称)
-具有非英语/可读字符的类名
Open the EXE or DLL file in Reflector or similar products and look inside the assembly.

If you see the following then it will probably be obfuscated:
- private/internal names (gray names in reflector) with non English/readable characters
- class names with non English/readable characters