/* Copyright (C) 2011 de4dot@gmail.com This file is part of de4dot. de4dot is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. de4dot is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with de4dot. If not, see . */ using Mono.Cecil; using de4dot.blocks; namespace de4dot.deobfuscators.CryptoObfuscator { class AntiDebugger { ModuleDefinition module; ISimpleDeobfuscator simpleDeobfuscator; IDeobfuscator deob; TypeDefinition antiDebuggerType; MethodDefinition antiDebuggerMethod; public TypeDefinition AntiDebuggerType { get { return antiDebuggerType; } } public MethodDefinition AntiDebuggerMethod { get { return antiDebuggerMethod; } } public AntiDebugger(ModuleDefinition module, ISimpleDeobfuscator simpleDeobfuscator, IDeobfuscator deob) { this.module = module; this.simpleDeobfuscator = simpleDeobfuscator; this.deob = deob; } public void find() { var mainMethod = module.EntryPoint; if (mainMethod == null) return; foreach (var info in DotNetUtils.getCalledMethods(module, mainMethod)) { var type = info.Item1; var method = info.Item2; if (!method.IsStatic || !DotNetUtils.isMethod(method, "System.Void", "()")) continue; if (DotNetUtils.getPInvokeMethod(type, "kernel32", "LoadLibrary") == null) continue; if (DotNetUtils.getPInvokeMethod(type, "kernel32", "GetProcAddress") == null) continue; deobfuscate(method); if (!containsString(method, "debugger was detected")) continue; antiDebuggerType = type; antiDebuggerMethod = method; return; } } void deobfuscate(MethodDefinition method) { simpleDeobfuscator.deobfuscate(method); simpleDeobfuscator.decryptStrings(method, deob); } bool containsString(MethodDefinition method, string part) { foreach (var s in DotNetUtils.getCodeStrings(method)) { if (s.Contains(part)) return true; } return false; } } }