diff --git a/de4dot.code/deobfuscators/CryptoObfuscator/ProxyDelegateFinder.cs b/de4dot.code/deobfuscators/CryptoObfuscator/ProxyDelegateFinder.cs index 3a4cb409..d9af3361 100644 --- a/de4dot.code/deobfuscators/CryptoObfuscator/ProxyDelegateFinder.cs +++ b/de4dot.code/deobfuscators/CryptoObfuscator/ProxyDelegateFinder.cs @@ -75,7 +75,7 @@ namespace de4dot.deobfuscators.CryptoObfuscator { protected override void onFoundProxyDelegate(TypeDefinition type) { foreach (var method in type.Methods) { - if (!method.IsStatic || !method.HasBody || method.Name == ".ctor") + if (!method.IsStatic || !method.HasBody || method.Name == ".cctor") continue; var instructions = method.Body.Instructions;