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

295 lines
9.0 KiB
C#
Raw Normal View History

2012-07-27 14:38:18 +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/>.
*/
2012-08-12 04:34:43 +08:00
using System;
2012-07-27 14:38:18 +08:00
using Mono.Cecil;
using Mono.Cecil.Cil;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Confuser {
2012-08-09 17:47:18 +08:00
class AntiDebugger : IVersionProvider {
2012-07-27 14:38:18 +08:00
ModuleDefinition module;
MethodDefinition initMethod;
2012-08-12 04:34:43 +08:00
ConfuserVersion version = ConfuserVersion.Unknown;
enum ConfuserVersion {
Unknown,
v14_r57588_normal,
v14_r57588_safe,
v14_r60785_normal,
v16_r61954_normal,
v16_r61954_safe,
v17_r73822_normal,
v17_r73822_safe,
v17_r74021_normal,
v17_r74021_safe,
v19_r76119_safe,
}
2012-07-27 14:38:18 +08:00
public MethodDefinition InitMethod {
get { return initMethod; }
}
public TypeDefinition Type {
get { return initMethod != null ? initMethod.DeclaringType : null; }
}
public bool Detected {
get { return initMethod != null; }
}
public AntiDebugger(ModuleDefinition module) {
this.module = module;
}
public void find() {
if (checkMethod(DotNetUtils.getModuleTypeCctor(module)))
return;
}
bool checkMethod(MethodDefinition method) {
if (method == null || method.Body == null)
return false;
foreach (var instr in method.Body.Instructions) {
if (instr.OpCode.Code != Code.Call)
continue;
var calledMethod = instr.Operand as MethodDefinition;
2012-08-12 04:34:43 +08:00
if (calledMethod == null || !calledMethod.IsStatic)
2012-07-27 14:38:18 +08:00
continue;
if (!DotNetUtils.isMethod(calledMethod, "System.Void", "()"))
continue;
2012-08-12 04:34:43 +08:00
var type = calledMethod.DeclaringType;
if (type == null)
continue;
2012-07-27 14:38:18 +08:00
2012-08-12 04:34:43 +08:00
if (checkMethod_normal(type, calledMethod) || checkMethod_safe(type, calledMethod)) {
2012-07-27 14:38:18 +08:00
initMethod = calledMethod;
return true;
}
}
2012-08-12 04:34:43 +08:00
2012-07-27 14:38:18 +08:00
return false;
}
2012-08-12 04:34:43 +08:00
static bool checkProfilerStrings1(MethodDefinition method) {
if (!DotNetUtils.hasString(method, "COR_ENABLE_PROFILING"))
2012-07-27 14:38:18 +08:00
return false;
2012-08-12 04:34:43 +08:00
if (!DotNetUtils.hasString(method, "COR_PROFILER"))
2012-07-27 14:38:18 +08:00
return false;
2012-08-12 04:34:43 +08:00
return true;
}
static bool checkProfilerStrings2(MethodDefinition method) {
if (!DotNetUtils.hasString(method, "COR_"))
return false;
if (!DotNetUtils.hasString(method, "ENABLE_PROFILING"))
return false;
if (!DotNetUtils.hasString(method, "PROFILER"))
return false;
return true;
}
static MethodDefinition getAntiDebugMethod(TypeDefinition type, MethodDefinition initMethod) {
foreach (var method in type.Methods) {
if (method.Body == null || method == initMethod)
continue;
if (!method.IsStatic || method.Name == ".cctor")
continue;
if (!method.IsPrivate)
continue;
if (!DotNetUtils.isMethod(method, "System.Void", "()") && !DotNetUtils.isMethod(method, "System.Void", "(System.Object)"))
continue;
return method;
}
2012-08-12 04:34:43 +08:00
return null;
}
bool checkMethod_normal(TypeDefinition type, MethodDefinition initMethod) {
var ntQueryInformationProcess = DotNetUtils.getPInvokeMethod(type, "ntdll", "NtQueryInformationProcess");
if (ntQueryInformationProcess == null)
return false;
if (DotNetUtils.getPInvokeMethod(type, "ntdll", "NtSetInformationProcess") == null)
2012-07-27 14:38:18 +08:00
return false;
2012-08-12 04:34:43 +08:00
if (DotNetUtils.getPInvokeMethod(type, "kernel32", "CloseHandle") == null)
2012-07-27 14:38:18 +08:00
return false;
2012-08-12 04:34:43 +08:00
var antiDebugMethod = getAntiDebugMethod(type, initMethod);
if (antiDebugMethod == null)
return false;
if (!DotNetUtils.hasString(antiDebugMethod, "Debugger detected (Managed)"))
return false;
if (DotNetUtils.callsMethod(initMethod, "System.Void System.Threading.Thread::.ctor(System.Threading.ParameterizedThreadStart)")) {
int failFastCalls = ConfuserUtils.countCalls(antiDebugMethod, "System.Void System.Environment::FailFast(System.String)");
if (failFastCalls != 6 && failFastCalls != 8)
return false;
if (!checkProfilerStrings1(initMethod))
return false;
2012-08-12 04:34:43 +08:00
if (!DotNetUtils.callsMethod(antiDebugMethod, "System.Void System.Threading.Thread::.ctor(System.Threading.ParameterizedThreadStart)")) {
if (ConfuserUtils.countCalls(antiDebugMethod, ntQueryInformationProcess) != 2)
return false;
version = ConfuserVersion.v16_r61954_normal;
}
else if (failFastCalls == 8) {
if (ConfuserUtils.countCalls(antiDebugMethod, ntQueryInformationProcess) != 2)
return false;
version = ConfuserVersion.v17_r73822_normal;
}
else if (failFastCalls == 6) {
if (DotNetUtils.getPInvokeMethod(type, "IsDebuggerPresent") == null)
return false;
if (ConfuserUtils.countCalls(antiDebugMethod, ntQueryInformationProcess) != 0)
return false;
version = ConfuserVersion.v17_r74021_normal;
}
else
return false;
2012-08-12 04:34:43 +08:00
}
else if (!DotNetUtils.callsMethod(initMethod, "System.Void System.Threading.ThreadStart::.ctor(System.Object,System.IntPtr)")) {
if (!DotNetUtils.callsMethod(initMethod, "System.Void System.Diagnostics.Process::EnterDebugMode()"))
return false;
if (!checkProfilerStrings1(antiDebugMethod))
return false;
2012-08-12 04:34:43 +08:00
version = ConfuserVersion.v14_r57588_normal;
}
else {
if (!DotNetUtils.callsMethod(initMethod, "System.Void System.Diagnostics.Process::EnterDebugMode()"))
return false;
if (!checkProfilerStrings1(antiDebugMethod))
return false;
version = ConfuserVersion.v14_r60785_normal;
}
2012-07-27 14:38:18 +08:00
return true;
}
2012-08-12 04:34:43 +08:00
bool checkMethod_safe(TypeDefinition type, MethodDefinition initMethod) {
if (type == DotNetUtils.getModuleType(module)) {
if (!DotNetUtils.hasString(initMethod, "Debugger detected (Managed)"))
return false;
if (!checkProfilerStrings1(initMethod))
return false;
version = ConfuserVersion.v14_r57588_safe;
}
2012-08-12 04:34:43 +08:00
else {
var ntQueryInformationProcess = DotNetUtils.getPInvokeMethod(type, "ntdll", "NtQueryInformationProcess");
if (ntQueryInformationProcess == null)
return false;
if (DotNetUtils.getPInvokeMethod(type, "ntdll", "NtSetInformationProcess") == null)
return false;
if (DotNetUtils.getPInvokeMethod(type, "kernel32", "CloseHandle") == null)
return false;
var antiDebugMethod = getAntiDebugMethod(type, initMethod);
if (antiDebugMethod == null)
return false;
if (!DotNetUtils.hasString(antiDebugMethod, "Debugger detected (Managed)") &&
!DotNetUtils.hasString(antiDebugMethod, "Debugger is detected (Managed)"))
return false;
if (!DotNetUtils.callsMethod(initMethod, "System.Void System.Threading.Thread::.ctor(System.Threading.ParameterizedThreadStart)"))
return false;
if (ConfuserUtils.countCalls(antiDebugMethod, ntQueryInformationProcess) != 0)
return false;
if (!checkProfilerStrings1(initMethod) && !checkProfilerStrings2(initMethod))
return false;
int failFastCalls = ConfuserUtils.countCalls(antiDebugMethod, "System.Void System.Environment::FailFast(System.String)");
if (failFastCalls != 2)
return false;
if (!DotNetUtils.callsMethod(antiDebugMethod, "System.Void System.Threading.Thread::.ctor(System.Threading.ParameterizedThreadStart)"))
version = ConfuserVersion.v16_r61954_safe;
else if (DotNetUtils.getPInvokeMethod(type, "IsDebuggerPresent") == null)
version = ConfuserVersion.v17_r73822_safe;
else if (checkProfilerStrings1(initMethod))
version = ConfuserVersion.v17_r74021_safe;
else
version = ConfuserVersion.v19_r76119_safe;
}
return true;
}
2012-08-09 17:47:18 +08:00
public bool getRevisionRange(out int minRev, out int maxRev) {
2012-08-12 04:34:43 +08:00
switch (version) {
case ConfuserVersion.Unknown:
minRev = maxRev = 0;
return false;
case ConfuserVersion.v14_r57588_safe:
minRev = 57588;
maxRev = 60787;
return true;
case ConfuserVersion.v16_r61954_safe:
minRev = 61954;
maxRev = 73791;
return true;
case ConfuserVersion.v17_r73822_safe:
minRev = 73822;
maxRev = 73822;
return true;
case ConfuserVersion.v17_r74021_safe:
minRev = 74021;
maxRev = 76101;
return true;
case ConfuserVersion.v19_r76119_safe:
minRev = 76119;
maxRev = int.MaxValue;
return true;
case ConfuserVersion.v14_r57588_normal:
minRev = 57588;
maxRev = 60408;
return true;
case ConfuserVersion.v14_r60785_normal:
minRev = 60785;
maxRev = 60787;
return true;
case ConfuserVersion.v16_r61954_normal:
minRev = 61954;
maxRev = 73791;
return true;
case ConfuserVersion.v17_r73822_normal:
minRev = 73822;
maxRev = 73822;
return true;
case ConfuserVersion.v17_r74021_normal:
minRev = 74021;
maxRev = int.MaxValue;
return true;
default: throw new ApplicationException("Invalid version");
}
2012-08-09 17:47:18 +08:00
}
2012-07-27 14:38:18 +08:00
}
}