Support latest CO build

This commit is contained in:
de4dot 2012-06-04 09:51:07 +02:00
parent 27a91f5942
commit 3264bfc5cd
4 changed files with 5 additions and 3 deletions

View File

@ -62,7 +62,7 @@ namespace de4dot.code.deobfuscators.CryptoObfuscator {
if (DotNetUtils.getPInvokeMethod(type, "kernel32", "GetProcAddress") == null)
continue;
deobfuscate(method);
if (!containsString(method, "debugger is active"))
if (!containsString(method, "debugger is activ"))
continue;
antiDebuggerType = type;

View File

@ -127,7 +127,7 @@ namespace de4dot.code.deobfuscators.CryptoObfuscator {
MethodDefinition getProxyCreateMethod(TypeDefinition type) {
if (DotNetUtils.findFieldType(type, "System.ModuleHandle", true) == null)
return null;
if (type.Fields.Count < 1 || type.Fields.Count > 4)
if (type.Fields.Count < 1 || type.Fields.Count > 5)
return null;
MethodDefinition createMethod = null;

View File

@ -298,6 +298,8 @@ namespace de4dot.code.deobfuscators.CryptoObfuscator {
foreach (var method in type.Methods) {
if (DotNetUtils.isMethod(method, "System.Byte[]", "(System.IO.Stream)"))
return method;
if (DotNetUtils.isMethod(method, "System.Byte[]", "(System.Int32,System.IO.Stream)"))
return method;
}
return null;
}

View File

@ -84,7 +84,7 @@ namespace de4dot.code.deobfuscators.CryptoObfuscator {
if (!method.IsStatic || !DotNetUtils.isMethod(method, "System.Void", "()"))
return false;
if (type.Methods.Count < 3 || type.Methods.Count > 6)
if (type.Methods.Count < 3 || type.Methods.Count > 7)
return false;
if (DotNetUtils.getPInvokeMethod(type, "mscoree", "StrongNameSignatureVerificationEx") != null) {
}