Example #1
0
 public ResolverBase(ModuleDefMD module, ISimpleDeobfuscator simpleDeobfuscator, IDeobfuscator deob)
 {
     this.module             = module;
     frameworkType           = DotNetUtils.GetFrameworkType(module);
     this.simpleDeobfuscator = simpleDeobfuscator;
     this.deob = deob;
 }
Example #2
0
 public AssemblyResolver(ModuleDefMD module, DecrypterType decrypterType)
 {
     this.module                    = module;
     frameworkType                  = DotNetUtils.GetFrameworkType(module);
     this.decrypterType             = decrypterType;
     codeCompilerMethodCallRestorer = new CodeCompilerMethodCallRestorer(module);
 }
Example #3
0
		public ResourceDecrypter(ModuleDefMD module, ISimpleDeobfuscator simpleDeobfuscator) {
			this.module = module;
			frameworkType = DotNetUtils.GetFrameworkType(module);
			Find(simpleDeobfuscator);
		}
Example #4
0
 public TamperDetection(ModuleDefMD module)
 {
     this.module   = module;
     frameworkType = DotNetUtils.GetFrameworkType(module);
 }
Example #5
0
 public VersionDetector(ModuleDefMD module, StringDecrypter stringDecrypter)
 {
     this.stringDecrypter = stringDecrypter;
     this.frameworkType   = DotNetUtils.GetFrameworkType(module);
 }