Update detection of string decrypter type

This commit is contained in:
de4dot 2012-01-07 00:04:31 +01:00
parent 635c414c1b
commit a54cfbf996

View File

@ -93,8 +93,6 @@ namespace de4dot.code.deobfuscators.Eazfuscator {
void findStringDecrypterMethod() {
foreach (var type in module.Types) {
if (!string.IsNullOrEmpty(type.Namespace))
continue;
if (DotNetUtils.findFieldType(type, "System.IO.BinaryReader", true) == null)
continue;
if (DotNetUtils.findFieldType(type, "System.Collections.Generic.Dictionary`2<System.Int32,System.String>", true) == null)