Update detection of decrypter constants. Fixes #59

This commit is contained in:
de4dot 2012-06-25 01:14:26 +02:00
parent 3264bfc5cd
commit d1259460e3

View File

@ -665,6 +665,8 @@ namespace de4dot.code.deobfuscators.Eazfuscator_NET {
return false;
if (!constantsReader.getNextInt32(ref index, out tmp2))
return false;
if (tmp2 == 0 && !constantsReader.getNextInt32(ref index, out tmp2))
return false;
index = 0;
var instrs = cctor.Body.Instructions;