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

157 lines
4.9 KiB
C#

/*
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/>.
*/
using System;
using System.Collections.Generic;
using System.IO;
using Mono.Cecil;
using Mono.Cecil.Cil;
using de4dot.blocks;
namespace de4dot.deobfuscators.dotNET_Reactor {
class MethodsDecrypter {
ModuleDefinition module;
EncryptedResource encryptedResource;
long xorKey;
bool useXorKey;
public bool Detected {
get { return encryptedResource.ResourceDecrypterMethod != null; }
}
public MethodsDecrypter(ModuleDefinition module) {
this.module = module;
this.encryptedResource = new EncryptedResource(module);
}
public MethodsDecrypter(ModuleDefinition module, MethodsDecrypter oldOne) {
this.module = module;
this.encryptedResource = new EncryptedResource(module, oldOne.encryptedResource);
}
public void find() {
var checkedMethods = new Dictionary<MethodReferenceAndDeclaringTypeKey, bool>();
var callCounter = new CallCounter();
int typesLeft = 30;
foreach (var type in module.GetTypes()) {
var cctor = DotNetUtils.getMethod(type, ".cctor");
if (cctor == null || cctor.Body == null)
continue;
if (typesLeft-- <= 0)
break;
foreach (var info in DotNetUtils.getCalledMethods(module, cctor)) {
var method = info.Item2;
var key = new MethodReferenceAndDeclaringTypeKey(method);
if (!checkedMethods.ContainsKey(key)) {
checkedMethods[key] = true;
if (!DotNetUtils.isMethod(method, "System.Void", "()"))
continue;
if (!encryptedResource.couldBeResourceDecrypter(method))
continue;
}
callCounter.add(method);
}
}
encryptedResource.ResourceDecrypterMethod = (MethodDefinition)callCounter.most();
}
public byte[] decrypt(ISimpleDeobfuscator simpleDeobfuscator) {
if (encryptedResource.ResourceDecrypterMethod == null)
return null;
encryptedResource.init(simpleDeobfuscator);
initXorKey();
var methodsData = encryptedResource.decrypt();
if (useXorKey) {
var stream = new MemoryStream(methodsData);
var reader = new BinaryReader(stream);
var writer = new BinaryWriter(stream);
int count = methodsData.Length / 8;
for (int i = 0; i < count; i++) {
long val = reader.ReadInt64();
val ^= xorKey;
stream.Position -= 8;
writer.Write(val);
}
}
using (var fileStream = new FileStream(module.FullyQualifiedName, FileMode.Open, FileAccess.Read, FileShare.Read)) {
byte[] fileData = new byte[(int)fileStream.Length];
fileStream.Read(fileData, 0, fileData.Length);
var peImage = new PE.PeImage(fileData);
var methodsDataReader = new BinaryReader(new MemoryStream(methodsData));
int patchCount = methodsDataReader.ReadInt32();
int mode = methodsDataReader.ReadInt32();
if (!useXorKey || mode == 1) {
for (int i = 0; i < patchCount; i++) {
uint rva = methodsDataReader.ReadUInt32();
uint data = methodsDataReader.ReadUInt32();
peImage.write(rva, BitConverter.GetBytes(data));
}
while (methodsDataReader.BaseStream.Position < methodsData.Length - 1) {
uint rva = methodsDataReader.ReadUInt32();
uint token = methodsDataReader.ReadUInt32();
int size = methodsDataReader.ReadInt32();
if (size > 0)
peImage.write(rva, methodsDataReader.ReadBytes(size));
}
}
else {
for (int i = 0; i < patchCount; i++) {
uint rva = methodsDataReader.ReadUInt32();
uint data = methodsDataReader.ReadUInt32();
peImage.write(rva, BitConverter.GetBytes(data));
}
int count = methodsDataReader.ReadInt32();
while (methodsDataReader.BaseStream.Position < methodsData.Length - 1) {
uint rva = methodsDataReader.ReadUInt32();
uint token = methodsDataReader.ReadUInt32();
int size = methodsDataReader.ReadInt32();
if (size > 0)
peImage.write(rva, methodsDataReader.ReadBytes(size));
}
}
return fileData;
}
}
void initXorKey() {
useXorKey = false;
var instructions = encryptedResource.ResourceDecrypterMethod.Body.Instructions;
for (int i = 0; i < instructions.Count - 1; i++) {
if (instructions[i].OpCode.Code != Code.Ldind_I8)
continue;
var ldci4 = instructions[i + 1];
if (!DotNetUtils.isLdcI4(ldci4))
continue;
xorKey = DotNetUtils.getLdcI4Value(ldci4);
useXorKey = true;
return;
}
}
}
}