因此,在下面的代码中,您会注意到注释“// This item is obfusated and can't be translate.”
我想知道的是,这是否意味着注释代替了一些混淆的代码,而后面的内容实际上并没有被混淆,还是意味着“下面的代码被混淆了”?
从我在网上可以找到的内容来看,这听起来像前者,但我不确定。代码显然看起来很模糊,但它并非不可翻译,只是很搞笑。
public static NameValueCollection ParseStringIntoNameValueCollection(string responseString, bool undoCallbackEscapes)
{
// This item is obfuscated and can not be translated.
NameValueCollection values;
string[] strArray;
int num;
string str2;
string str3;
int num3;
goto Label_0027;
Label_0002:
switch (num3)
{
case 0:
if (!undoCallbackEscapes)
{
goto Label_0057;
}
num3 = 4;
goto Label_0002;
case 1:
goto Label_00E5;
case 2:
if (num < strArray.Length)
{
string str = strArray[num];
int index = str.IndexOf('=');
str2 = str.Substring(0, index);
str3 = str.Substring(index + 1);
num3 = 0;
}
else
{
num3 = 6;
}
goto Label_0002;
case 3:
if (7 < (7 - 5))
{
goto Label_0071;
}
goto Label_00E5;
case 4:
str2 = unEscapeCallbacks(str2);
str3 = unEscapeCallbacks(str3);
num3 = 5;
goto Label_0002;
case 5:
goto Label_0057;
case 6:
return values;
}
Label_0027:
values = new NameValueCollection();
strArray = responseString.Split(new char[] { '&' }, StringSplitOptions.RemoveEmptyEntries);
num = 0;
num3 = 1;
goto Label_0002;
Label_0057:
values.Add(str2, str3);
num++;
num3 = 3;
goto Label_0002;
Label_00E5:
num3 = 2;
goto Label_0002;
}
更新:我确实发现了这个......“有时,不是太频繁,当 Reflector 为您反汇编源代码时,它会显示“该项目已混淆,无法翻译”而不是代码。”
对我来说,这意味着它用注释掩盖了混淆的代码。任何人都可以验证这一点吗?我确实看过 IL,它似乎显示了所有内容,所以该陈述可能不准确。
对我来说,这段代码看起来像是被一个了解 BASIC 的 5 岁孩子混淆了,而不是一些混淆软件。