de4dot-cex/de4dot.code/deobfuscators/dotNET_Reactor4/EncryptedResource.cs

189 lines
6.0 KiB
C#
Raw Normal View History

/*
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.IO;
using System.Collections.Generic;
using System.Security.Cryptography;
using Mono.Cecil;
using Mono.Cecil.Cil;
using de4dot.blocks;
2011-12-21 04:47:45 +08:00
namespace de4dot.code.deobfuscators.dotNET_Reactor4 {
class EncryptedResource {
ModuleDefinition module;
MethodDefinition resourceDecrypterMethod;
EmbeddedResource encryptedDataResource;
byte[] key, iv;
public TypeDefinition Type {
get { return resourceDecrypterMethod == null ? null : resourceDecrypterMethod.DeclaringType; }
}
2011-11-06 22:24:30 +08:00
public MethodDefinition Method {
get { return resourceDecrypterMethod; }
set { resourceDecrypterMethod = value; }
}
2011-11-06 22:24:30 +08:00
public EmbeddedResource Resource {
get { return encryptedDataResource; }
}
public bool FoundResource {
get { return encryptedDataResource != null; }
}
public EncryptedResource(ModuleDefinition module) {
this.module = module;
}
public EncryptedResource(ModuleDefinition module, EncryptedResource oldOne) {
this.module = module;
2011-11-06 19:18:35 +08:00
resourceDecrypterMethod = lookup(oldOne.resourceDecrypterMethod, "Could not find resource decrypter method");
2011-10-27 01:49:25 +08:00
if (oldOne.encryptedDataResource != null)
encryptedDataResource = DotNetUtils.getResource(module, oldOne.encryptedDataResource.Name) as EmbeddedResource;
key = oldOne.key;
iv = oldOne.iv;
2011-10-27 01:49:25 +08:00
if (encryptedDataResource == null && oldOne.encryptedDataResource != null)
throw new ApplicationException("Could not initialize EncryptedResource");
}
2011-11-06 19:18:35 +08:00
T lookup<T>(T def, string errorMessage) where T : MemberReference {
return DeobUtils.lookup(module, def, errorMessage);
}
2011-12-21 03:16:57 +08:00
public bool couldBeResourceDecrypter(MethodDefinition method, IEnumerable<string> additionalTypes, bool checkResource = true) {
if (!method.IsStatic)
return false;
if (method.Body == null)
return false;
2011-10-27 01:49:25 +08:00
var localTypes = new LocalTypes(method);
var requiredTypes = new List<string> {
"System.Byte[]",
"System.IO.BinaryReader",
"System.IO.MemoryStream",
"System.Security.Cryptography.CryptoStream",
"System.Security.Cryptography.ICryptoTransform",
};
2011-10-27 01:49:25 +08:00
requiredTypes.AddRange(additionalTypes);
if (!localTypes.all(requiredTypes))
return false;
2011-11-24 17:08:29 +08:00
if (!localTypes.exists("System.Security.Cryptography.RijndaelManaged") &&
!localTypes.exists("System.Security.Cryptography.AesManaged"))
return false;
2011-11-09 02:32:10 +08:00
if (checkResource && findMethodsDecrypterResource(method) == null)
return false;
return true;
}
public void init(ISimpleDeobfuscator simpleDeobfuscator) {
if (resourceDecrypterMethod == null)
return;
simpleDeobfuscator.deobfuscate(resourceDecrypterMethod);
encryptedDataResource = findMethodsDecrypterResource(resourceDecrypterMethod);
if (encryptedDataResource == null)
return;
2011-12-21 03:16:57 +08:00
key = ArrayFinder.getInitializedByteArray(resourceDecrypterMethod, 32);
if (key == null)
throw new ApplicationException("Could not find resource decrypter key");
2011-12-21 03:16:57 +08:00
iv = ArrayFinder.getInitializedByteArray(resourceDecrypterMethod, 16);
if (iv == null)
throw new ApplicationException("Could not find resource decrypter IV");
if (usesPublicKeyToken()) {
var publicKeyToken = module.Assembly.Name.PublicKeyToken;
if (publicKeyToken != null && publicKeyToken.Length > 0) {
for (int i = 0; i < 8; i++)
iv[i * 2 + 1] = publicKeyToken[i];
}
}
}
static int[] pktIndexes = new int[16] { 1, 0, 3, 1, 5, 2, 7, 3, 9, 4, 11, 5, 13, 6, 15, 7 };
bool usesPublicKeyToken() {
int pktIndex = 0;
foreach (var instr in resourceDecrypterMethod.Body.Instructions) {
if (instr.OpCode.FlowControl != FlowControl.Next) {
pktIndex = 0;
continue;
}
if (!DotNetUtils.isLdcI4(instr))
continue;
int val = DotNetUtils.getLdcI4Value(instr);
if (val != pktIndexes[pktIndex++]) {
pktIndex = 0;
continue;
}
if (pktIndex >= pktIndexes.Length)
return true;
}
return false;
}
EmbeddedResource findMethodsDecrypterResource(MethodDefinition method) {
foreach (var s in DotNetUtils.getCodeStrings(method)) {
var resource = DotNetUtils.getResource(module, s) as EmbeddedResource;
if (resource != null)
return resource;
}
return null;
}
public byte[] decrypt() {
if (encryptedDataResource == null || key == null || iv == null)
throw new ApplicationException("Can't decrypt resource");
2011-10-29 08:25:31 +08:00
using (var aes = new RijndaelManaged { Mode = CipherMode.CBC }) {
using (var transform = aes.CreateDecryptor(key, iv)) {
var encryptedData = encryptedDataResource.GetResourceData();
return transform.TransformFinalBlock(encryptedData, 0, encryptedData.Length);
}
}
}
public byte[] encrypt(byte[] data) {
if (key == null || iv == null)
throw new ApplicationException("Can't encrypt resource");
using (var aes = new RijndaelManaged { Mode = CipherMode.CBC }) {
using (var transform = aes.CreateEncryptor(key, iv)) {
return transform.TransformFinalBlock(data, 0, data.Length);
}
}
}
public void updateResource(byte[] encryptedData) {
for (int i = 0; i < module.Resources.Count; i++) {
if (module.Resources[i] == encryptedDataResource) {
encryptedDataResource = new EmbeddedResource(encryptedDataResource.Name, encryptedDataResource.Attributes, encryptedData);
module.Resources[i] = encryptedDataResource;
return;
}
}
throw new ApplicationException("Could not find encrypted resource");
}
}
}