Update string decrypter detector

This commit is contained in:
de4dot 2014-04-14 18:26:59 +02:00
parent c8effe6b5a
commit 099233960f

View File

@ -159,6 +159,8 @@ namespace de4dot.code.deobfuscators.Agile_NET {
accessedArrayField |= f == keyArrayField;
if (f == null || f == keyArrayField || f == foundField)
continue;
if (DotNetUtils.DerivesFromDelegate(f.DeclaringType))
continue;
if (f.FieldSig.GetFieldType().GetFullName() != "System.Collections.Hashtable" ||
foundField != null)
goto exit;