de4dot-cex/de4dot.code/deobfuscators/CryptoObfuscator/AntiDebugger.cs

96 lines
2.8 KiB
C#
Raw Normal View History

/*
2012-01-10 06:02:47 +08:00
Copyright (C) 2011-2012 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 <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.CryptoObfuscator {
class AntiDebugger {
2012-11-09 05:24:13 +08:00
ModuleDefMD module;
ISimpleDeobfuscator simpleDeobfuscator;
IDeobfuscator deob;
TypeDef antiDebuggerType;
MethodDef antiDebuggerMethod;
public TypeDef Type {
2011-10-23 15:03:00 +08:00
get { return antiDebuggerType; }
}
public MethodDef Method {
2011-10-23 15:03:00 +08:00
get { return antiDebuggerMethod; }
}
2012-11-09 05:24:13 +08:00
public AntiDebugger(ModuleDefMD module, ISimpleDeobfuscator simpleDeobfuscator, IDeobfuscator deob) {
this.module = module;
this.simpleDeobfuscator = simpleDeobfuscator;
this.deob = deob;
}
public void find() {
2011-12-15 23:16:21 +08:00
if (find(module.EntryPoint))
return;
2012-01-22 18:15:14 +08:00
if (find(DotNetUtils.getModuleTypeCctor(module)))
2011-12-15 23:16:21 +08:00
return;
}
bool find(MethodDef methodToCheck) {
2011-12-15 23:16:21 +08:00
if (methodToCheck == null)
return false;
2012-03-18 03:36:41 +08:00
foreach (var method in DotNetUtils.getCalledMethods(module, methodToCheck)) {
var type = method.DeclaringType;
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);
2012-06-27 16:45:45 +08:00
if (!containsString(method, "debugger is activ") &&
2012-07-11 08:15:33 +08:00
!containsString(method, "debugger is running") &&
2012-07-23 02:35:33 +08:00
!containsString(method, "run under a debugger") &&
2012-08-21 21:06:42 +08:00
!containsString(method, "run under debugger") &&
!containsString(method, "Debugger detected") &&
2012-08-23 00:33:27 +08:00
!containsString(method, "Debugger was detected") &&
!containsString(method, "{0} was detected"))
continue;
antiDebuggerType = type;
antiDebuggerMethod = method;
2011-12-15 23:16:21 +08:00
return true;
}
2011-12-15 23:16:21 +08:00
return false;
}
void deobfuscate(MethodDef method) {
simpleDeobfuscator.deobfuscate(method);
simpleDeobfuscator.decryptStrings(method, deob);
}
bool containsString(MethodDef method, string part) {
foreach (var s in DotNetUtils.getCodeStrings(method)) {
if (s.Contains(part))
return true;
}
return false;
}
}
}