de4dot-cex/de4dot.code/deobfuscators/dotNET_Reactor/Deobfuscator.cs

338 lines
10 KiB
C#
Raw Normal View History

2011-10-25 01:44:49 +08:00
/*
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 <http://www.gnu.org/licenses/>.
*/
2011-10-27 01:49:25 +08:00
using System.IO;
2011-10-25 01:44:49 +08:00
using System.Collections.Generic;
using Mono.Cecil;
using Mono.Cecil.Cil;
2011-10-29 08:27:34 +08:00
using Mono.MyStuff;
2011-10-25 01:44:49 +08:00
using de4dot.blocks;
namespace de4dot.deobfuscators.dotNET_Reactor {
class DeobfuscatorInfo : DeobfuscatorInfoBase {
BoolOption decryptMethods;
BoolOption decryptBools;
BoolOption restoreTypes;
2011-10-25 01:44:49 +08:00
public DeobfuscatorInfo()
: base("dr") {
decryptMethods = new BoolOption(null, makeArgName("methods"), "Decrypt methods", true);
decryptBools = new BoolOption(null, makeArgName("bools"), "Decrypt booleans", true);
restoreTypes = new BoolOption(null, makeArgName("types"), "Restore types (object -> real type)", true);
2011-10-25 01:44:49 +08:00
}
internal static string ObfuscatorType {
2011-10-27 08:07:33 +08:00
get { return "dotNet_Reactor"; }
2011-10-25 01:44:49 +08:00
}
public override string Type {
get { return ObfuscatorType; }
}
public override IDeobfuscator createDeobfuscator() {
return new Deobfuscator(new Deobfuscator.Options {
ValidNameRegex = validNameRegex.get(),
DecryptMethods = decryptMethods.get(),
DecryptBools = decryptBools.get(),
RestoreTypes = restoreTypes.get(),
2011-10-25 01:44:49 +08:00
});
}
protected override IEnumerable<Option> getOptionsInternal() {
return new List<Option>() {
decryptMethods,
decryptBools,
restoreTypes,
2011-10-25 01:44:49 +08:00
};
}
}
class Deobfuscator : DeobfuscatorBase {
Options options;
2011-10-30 02:28:29 +08:00
string obfuscatorName = ".NET Reactor";
2011-10-25 01:44:49 +08:00
2011-10-27 01:49:25 +08:00
PE.PeImage peImage;
byte[] fileData;
MethodsDecrypter methodsDecrypter;
2011-10-27 01:49:25 +08:00
StringDecrypter stringDecrypter;
2011-10-27 02:23:45 +08:00
BooleanDecrypter booleanDecrypter;
2011-10-27 03:05:35 +08:00
BoolValueInliner boolValueInliner;
2011-10-25 01:44:49 +08:00
internal class Options : OptionsBase {
public bool DecryptMethods { get; set; }
public bool DecryptBools { get; set; }
public bool RestoreTypes { get; set; }
2011-10-25 01:44:49 +08:00
}
public override string Type {
get { return DeobfuscatorInfo.ObfuscatorType; }
}
public override string Name {
2011-10-30 02:28:29 +08:00
get { return obfuscatorName; }
2011-10-25 01:44:49 +08:00
}
public Deobfuscator(Options options)
: base(options) {
this.options = options;
}
public override void init(ModuleDefinition module) {
base.init(module);
}
protected override int detectInternal() {
2011-10-25 01:44:49 +08:00
int val = 0;
2011-10-27 02:23:45 +08:00
if (methodsDecrypter.Detected || stringDecrypter.Detected || booleanDecrypter.Detected)
2011-10-27 01:49:25 +08:00
val += 100;
2011-10-27 02:23:45 +08:00
int sum = convert(methodsDecrypter.Detected) +
convert(stringDecrypter.Detected) +
convert(booleanDecrypter.Detected);
if (sum > 1)
val += 10 * (sum - 1);
2011-10-25 01:44:49 +08:00
return val;
}
2011-10-27 02:23:45 +08:00
static int convert(bool b) {
return b ? 1 : 0;
}
protected override void scanForObfuscator() {
methodsDecrypter = new MethodsDecrypter(module);
methodsDecrypter.find();
2011-10-27 01:49:25 +08:00
stringDecrypter = new StringDecrypter(module);
2011-10-30 02:28:29 +08:00
stringDecrypter.find(DeobfuscatedFile);
2011-10-27 02:23:45 +08:00
booleanDecrypter = new BooleanDecrypter(module);
booleanDecrypter.find();
2011-10-30 02:28:29 +08:00
obfuscatorName = detectVersion();
}
string detectVersion() {
/*
Methods decrypter locals (not showing its own types):
3.7.0.3:
"System.Byte[]"
"System.Int32"
"System.Int32[]"
"System.IntPtr"
"System.IO.BinaryReader"
"System.IO.MemoryStream"
"System.Object"
"System.Reflection.Assembly"
"System.Security.Cryptography.CryptoStream"
"System.Security.Cryptography.ICryptoTransform"
"System.Security.Cryptography.RijndaelManaged"
"System.String"
3.9.8.0:
- "System.Int32[]"
+ "System.Diagnostics.StackFrame"
4.0.0.0: (jitter)
2011-10-30 02:28:29 +08:00
- "System.Diagnostics.StackFrame"
- "System.Object"
+ "System.Boolean"
+ "System.Collections.IEnumerator"
+ "System.Delegate"
+ "System.Diagnostics.Process"
+ "System.Diagnostics.ProcessModule"
+ "System.Diagnostics.ProcessModuleCollection"
+ "System.IDisposable"
+ "System.Int64"
+ "System.UInt32"
+ "System.UInt64"
4.1.0.0: (jitter)
+ "System.Reflection.Assembly"
4.3.1.0: (jitter)
+ "System.Byte&"
2011-10-30 02:28:29 +08:00
*/
LocalTypes localTypes;
int minVer = -1;
foreach (var info in stringDecrypter.DecrypterInfos) {
if (info.key == null)
continue;
localTypes = new LocalTypes(info.method);
if (!localTypes.exists("System.IntPtr"))
return ".NET Reactor <= 3.7";
minVer = 3800;
break;
}
if (methodsDecrypter.MethodsDecrypterMethod == null) {
if (minVer >= 3800)
return ".NET Reactor >= 3.8";
return ".NET Reactor";
}
localTypes = new LocalTypes(methodsDecrypter.MethodsDecrypterMethod);
if (localTypes.exists("System.Int32[]")) {
if (minVer >= 3800)
return ".NET Reactor 3.8.4.1 - 3.9.0.1";
return ".NET Reactor <= 3.9.0.1";
}
if (!localTypes.exists("System.Diagnostics.Process")) { // If < 4.0
if (localTypes.exists("System.Diagnostics.StackFrame"))
return ".NET Reactor 3.9.8.0";
}
var compileMethod = MethodsDecrypter.findDnrCompileMethod(methodsDecrypter.MethodsDecrypterMethod.DeclaringType);
if (compileMethod == null)
return ".NET Reactor < 4.0";
DeobfuscatedFile.deobfuscate(compileMethod);
bool compileMethodHasConstant_0x70000000 = findConstant(compileMethod, 0x70000000); // 4.0-4.1
DeobfuscatedFile.deobfuscate(methodsDecrypter.MethodsDecrypterMethod);
bool hasCorEnableProfilingString = findString(methodsDecrypter.MethodsDecrypterMethod, "Cor_Enable_Profiling"); // 4.1-4.4
if (compileMethodHasConstant_0x70000000) {
if (hasCorEnableProfilingString)
return ".NET Reactor 4.1";
return ".NET Reactor 4.0";
}
if (!hasCorEnableProfilingString)
return ".NET Reactor";
// 4.2-4.4
2011-10-30 02:28:29 +08:00
if (!localTypes.exists("System.Byte&"))
return ".NET Reactor 4.2";
localTypes = new LocalTypes(compileMethod);
if (localTypes.exists("System.Object"))
return ".NET Reactor 4.4";
return ".NET Reactor 4.3";
}
static bool findString(MethodDefinition method, string s) {
foreach (var cs in DotNetUtils.getCodeStrings(method)) {
if (cs == s)
return true;
}
return false;
}
static bool findConstant(MethodDefinition method, int constant) {
if (method == null || method.Body == null)
return false;
foreach (var instr in method.Body.Instructions) {
if (instr.OpCode.Code != Code.Ldc_I4)
continue;
if (constant == (int)instr.Operand)
return true;
}
return false;
}
2011-10-29 08:27:34 +08:00
public override bool getDecryptedModule(ref byte[] newFileData, ref Dictionary<uint, DumpedMethod> dumpedMethods) {
2011-10-27 01:49:25 +08:00
using (var fileStream = new FileStream(module.FullyQualifiedName, FileMode.Open, FileAccess.Read, FileShare.Read)) {
fileData = new byte[(int)fileStream.Length];
fileStream.Read(fileData, 0, fileData.Length);
}
peImage = new PE.PeImage(fileData);
if (!options.DecryptMethods)
2011-10-29 08:27:34 +08:00
return false;
2011-10-29 08:27:34 +08:00
if (!methodsDecrypter.decrypt(peImage, DeobfuscatedFile, ref dumpedMethods))
return false;
2011-10-27 01:49:25 +08:00
2011-10-29 08:27:34 +08:00
newFileData = fileData;
return true;
}
public override IDeobfuscator moduleReloaded(ModuleDefinition module) {
var newOne = new Deobfuscator(options);
newOne.setModule(module);
2011-10-27 02:23:45 +08:00
newOne.fileData = fileData;
2011-10-27 01:49:25 +08:00
newOne.peImage = new PE.PeImage(fileData);
newOne.methodsDecrypter = new MethodsDecrypter(module, methodsDecrypter);
2011-10-27 01:49:25 +08:00
newOne.stringDecrypter = new StringDecrypter(module, stringDecrypter);
2011-10-27 02:23:45 +08:00
newOne.booleanDecrypter = new BooleanDecrypter(module, booleanDecrypter);
return newOne;
}
2011-10-25 01:44:49 +08:00
public override void deobfuscateBegin() {
base.deobfuscateBegin();
2011-10-27 01:49:25 +08:00
stringDecrypter.init(peImage, fileData, DeobfuscatedFile);
2011-10-27 02:23:45 +08:00
booleanDecrypter.init(fileData, DeobfuscatedFile);
2011-10-27 03:05:35 +08:00
boolValueInliner = new BoolValueInliner();
if (options.DecryptBools) {
boolValueInliner.add(booleanDecrypter.BoolDecrypterMethod, (method, args) => {
return booleanDecrypter.decrypt((int)args[0]);
});
}
2011-10-27 01:49:25 +08:00
foreach (var info in stringDecrypter.DecrypterInfos) {
staticStringDecrypter.add(info.method, (method2, args) => {
return stringDecrypter.decrypt(method2, (int)args[0]);
});
}
if (stringDecrypter.OtherStringDecrypter != null) {
staticStringDecrypter.add(stringDecrypter.OtherStringDecrypter, (method2, args) => {
return stringDecrypter.decrypt((string)args[0]);
});
}
2011-10-27 01:49:25 +08:00
DeobfuscatedFile.stringDecryptersAdded();
if (Operations.DecryptStrings != OpDecryptString.None)
addResourceToBeRemoved(stringDecrypter.StringsResource, "Encrypted strings");
if (options.DecryptMethods) {
addResourceToBeRemoved(methodsDecrypter.MethodsResource, "Encrypted methods");
addCctorInitCallToBeRemoved(methodsDecrypter.MethodsDecrypterMethod);
}
if (options.DecryptBools)
addResourceToBeRemoved(booleanDecrypter.BooleansResource, "Encrypted booleans");
2011-10-29 09:39:08 +08:00
bool deleteTypes = Operations.DecryptStrings != OpDecryptString.None && options.DecryptMethods && options.DecryptBools;
if (deleteTypes && methodsDecrypter.MethodsDecrypterMethod != null)
addTypeToBeRemoved(methodsDecrypter.MethodsDecrypterMethod.DeclaringType, "Decrypter type");
2011-10-25 01:44:49 +08:00
}
public override bool deobfuscateOther(Blocks blocks) {
2011-10-27 03:05:35 +08:00
if (boolValueInliner.HasHandlers)
return boolValueInliner.decrypt(blocks) > 0;
return false;
}
2011-10-27 03:05:35 +08:00
public override void deobfuscateMethodEnd(Blocks blocks) {
2011-10-25 01:44:49 +08:00
base.deobfuscateMethodEnd(blocks);
}
public override void deobfuscateEnd() {
if (options.RestoreTypes)
new TypesRestorer(module).deobfuscate();
2011-10-25 01:44:49 +08:00
base.deobfuscateEnd();
}
public override IEnumerable<string> getStringDecrypterMethods() {
var list = new List<string>();
2011-10-27 01:49:25 +08:00
foreach (var info in stringDecrypter.DecrypterInfos)
list.Add(info.method.MetadataToken.ToInt32().ToString("X8"));
if (stringDecrypter.OtherStringDecrypter != null)
list.Add(stringDecrypter.OtherStringDecrypter.MetadataToken.ToInt32().ToString("X8"));
2011-10-25 01:44:49 +08:00
return list;
}
}
}