使用 .Net 反射器的反编译代码具有一些 unicode 字符
Decompiled code with .Net reflector has some unicode character
我已经用 .Net reflector
反编译了一些库。但是里面有一些韩文字母而不是函数。
我可以将主题替换为英文吗?
那些是这样的:
if (catalogs == null)
{
catalogs = new List<ComposablePartCatalog>();
catalogs.Add(蠒Ṃ슠厥荖乨Ὗὠ.쏼㗩≕調藀崥ᄀ(眞赲舚モ瑮.෬隁鼥ⵡﻹ㖒烚░(甊퇌ꢊꖽ፠䰷橝.뺛㸦ݑ胘믑�跷绑(typeof(Bootstrapper).TypeHandle))));
catalog = ꡗゴᎇ�碶㥝.⎑⧌略깫㈠떑惟컾(catalogs);
}
else
{
catalog = ꡗゴᎇ�碶㥝.⎑⧌略깫㈠떑惟컾(catalogs);
}
评论简要说明:
此代码已被开发人员混淆。所以这些字符实际上没有意义,因此无法翻译。
manual obfuscation is the deliberate act of creating obfuscated code, i.e. source or machine code that is difficult for humans to understand. Like obfuscation in natural language, it may use needlessly roundabout expressions to compose statements. Programmers may deliberately obfuscate code to conceal its purpose (security through obscurity) or its logic
据我所知,您的 .dll 文件已使用 Obfuscation 进行保护。不过那是none的问题,我们deo-obfuscate可以吗?在 github 发布页面上下载 DE4DOT right here,然后简单地 拖放 您的文件到 DE4DOT 的二进制文件中。
输出不再被混淆。
我已经用 .Net reflector
反编译了一些库。但是里面有一些韩文字母而不是函数。
我可以将主题替换为英文吗?
那些是这样的:
if (catalogs == null)
{
catalogs = new List<ComposablePartCatalog>();
catalogs.Add(蠒Ṃ슠厥荖乨Ὗὠ.쏼㗩≕調藀崥ᄀ(眞赲舚モ瑮.෬隁鼥ⵡﻹ㖒烚░(甊퇌ꢊꖽ፠䰷橝.뺛㸦ݑ胘믑�跷绑(typeof(Bootstrapper).TypeHandle))));
catalog = ꡗゴᎇ�碶㥝.⎑⧌略깫㈠떑惟컾(catalogs);
}
else
{
catalog = ꡗゴᎇ�碶㥝.⎑⧌略깫㈠떑惟컾(catalogs);
}
评论简要说明: 此代码已被开发人员混淆。所以这些字符实际上没有意义,因此无法翻译。
manual obfuscation is the deliberate act of creating obfuscated code, i.e. source or machine code that is difficult for humans to understand. Like obfuscation in natural language, it may use needlessly roundabout expressions to compose statements. Programmers may deliberately obfuscate code to conceal its purpose (security through obscurity) or its logic
据我所知,您的 .dll 文件已使用 Obfuscation 进行保护。不过那是none的问题,我们deo-obfuscate可以吗?在 github 发布页面上下载 DE4DOT right here,然后简单地 拖放 您的文件到 DE4DOT 的二进制文件中。 输出不再被混淆。