コード例 #1
0
ファイル: Deobfuscator.cs プロジェクト: ostuda/de4dot
 protected override void scanForObfuscatorInternal()
 {
     proxyDelegateFinder = new ProxyDelegateFinder(module);
     findCliSecureAttribute();
     findCliSecureRtType();
     findStringDecryptBuffer();
     findDelegateCreatorType();
 }
コード例 #2
0
ファイル: Deobfuscator.cs プロジェクト: ldh0227/de4dot
 protected override void scanForObfuscator()
 {
     findCliSecureAttribute();
     cliSecureRtType = new CliSecureRtType(module);
     cliSecureRtType.find();
     stringDecrypter = new StringDecrypter(module, cliSecureRtType.StringDecrypterMethod);
     stringDecrypter.find();
     proxyDelegateFinder = new ProxyDelegateFinder(module);
     proxyDelegateFinder.findDelegateCreator();
 }