/* 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 . */ using System; using System.Collections.Generic; using System.IO; using System.Security.Cryptography; using System.Text; using System.Text.RegularExpressions; using Mono.Cecil; using Mono.Cecil.Cil; using de4dot.blocks; namespace de4dot.code.deobfuscators.CodeFort { class AssemblyDecrypter { ModuleDefinition module; EmbeddedResource assemblyEncryptedResource; PasswordInfo embedPassword; MethodDefinition embedInitMethod; MethodDefinition embedResolverMethod; public class AssemblyInfo { public readonly byte[] data; public readonly EmbeddedResource resource; public readonly string asmFullName; public readonly string asmSimpleName; public readonly string extension; public AssemblyInfo(byte[] data, EmbeddedResource resource, string asmFullName, string asmSimpleName, string extension) { this.data = data; this.resource = resource; this.asmFullName = asmFullName; this.asmSimpleName = asmSimpleName; this.extension = extension; } public override string ToString() { return asmFullName; } } public bool EncryptedDetected { get { return assemblyEncryptedResource != null; } } public bool MainAssemblyHasAssemblyResolver { get { return embedInitMethod != null; } } public bool Detected { get { return EncryptedDetected || MainAssemblyHasAssemblyResolver; } } public TypeDefinition Type { get { return embedInitMethod != null ? embedInitMethod.DeclaringType : null; } } public MethodDefinition InitMethod { get { return embedInitMethod; } } public AssemblyDecrypter(ModuleDefinition module) { this.module = module; } public AssemblyDecrypter(ModuleDefinition module, AssemblyDecrypter oldOne) { this.module = module; this.embedPassword = oldOne.embedPassword; } public void find() { if (findEncrypted()) return; findEmbedded(); } static readonly string[] encryptedRequiredLocals = new string[] { "System.Byte", "System.Byte[]", "System.Int32", "System.IO.BinaryReader", "System.IO.MemoryStream", "System.IO.Stream", "System.Object[]", "System.Reflection.Assembly", "System.Type[]", }; bool findEncrypted() { var ep = module.EntryPoint; if (ep == null || ep.Body == null) return false; if (!DotNetUtils.isMethod(ep, "System.Void", "(System.String[])")) return false; var initMethod = checkCalledMethods(ep); if (initMethod == null || !new LocalTypes(initMethod).all(encryptedRequiredLocals)) return false; var resource = getResource(); if (resource == null) return false; assemblyEncryptedResource = resource; return true; } MethodDefinition checkCalledMethods(MethodDefinition method) { int calls = 0; TypeDefinition type = null; MethodDefinition initMethod = null; foreach (var calledMethod in DotNetUtils.getCalledMethods(module, method)) { calls++; if (type != null && calledMethod.DeclaringType != type) return null; type = calledMethod.DeclaringType; if (initMethod == null) initMethod = calledMethod; } if (calls != 2) return null; return initMethod; } EmbeddedResource getResource() { return DotNetUtils.getResource(module, "_") as EmbeddedResource; } bool findEmbedded() { return findEmbedded(DotNetUtils.getModuleTypeCctor(module)) || findEmbedded(module.EntryPoint); } bool findEmbedded(MethodDefinition method) { if (method == null || method.Body == null) return false; foreach (var calledMethod in DotNetUtils.getCalledMethods(module, method)) { var resolver = checkInitMethod(calledMethod); if (resolver == null) continue; if (!checkType(calledMethod.DeclaringType)) continue; embedInitMethod = calledMethod; embedResolverMethod = resolver; return true; } return false; } MethodDefinition checkInitMethod(MethodDefinition method) { if (method == null || !method.IsStatic || method.Body == null) return null; if (!DotNetUtils.isMethod(method, "System.Void", "()")) return null; var resolver = DeobUtils.getResolveMethod(method); if (resolver == null || resolver.DeclaringType != method.DeclaringType) return null; return resolver; } bool checkType(TypeDefinition type) { if (DotNetUtils.getMethod(type, "System.Byte[]", "(System.Byte[],System.String,System.String,System.Int32,System.String,System.Int32)") == null) return false; if (DotNetUtils.getMethod(type, "System.String", "(System.String)") == null) return false; if (DotNetUtils.getMethod(type, "System.Byte[]", "(System.Reflection.Assembly,System.String)") == null) return false; if (DotNetUtils.getMethod(type, "System.Void", "(System.IO.Stream,System.IO.Stream)") == null) return false; return true; } public byte[] decrypt() { if (assemblyEncryptedResource == null) return null; var reader = new BinaryReader(assemblyEncryptedResource.GetResourceStream()); var encryptedData = DeobUtils.gunzip(reader.BaseStream, reader.ReadInt32()); reader = new BinaryReader(new MemoryStream(encryptedData)); var serializedData = reader.ReadBytes(reader.ReadInt32()); for (int i = 0; i < serializedData.Length; i++) serializedData[i] ^= 0xAD; var encryptedAssembly = reader.ReadBytes((int)(reader.BaseStream.Length - reader.BaseStream.Position)); var passwordFinder = new PasswordFinder(serializedData); PasswordInfo mainAsmPassword; passwordFinder.find(out mainAsmPassword, out embedPassword); return decrypt(mainAsmPassword, encryptedAssembly); } static byte[] decrypt(PasswordInfo password, byte[] data) { const int iterations = 2; const int numBits = 0x100; var key = new Rfc2898DeriveBytes(password.passphrase, Encoding.UTF8.GetBytes(password.salt), iterations).GetBytes(numBits / 8); return DeobUtils.aesDecrypt(data, key, Encoding.UTF8.GetBytes(password.iv)); } static byte[] gunzip(byte[] data) { var reader = new BinaryReader(new MemoryStream(data)); return DeobUtils.gunzip(reader.BaseStream, reader.ReadInt32()); } public List getAssemblyInfos(ISimpleDeobfuscator simpleDeobfuscator, IDeobfuscator deob) { var infos = new List(); if (embedResolverMethod != null) { simpleDeobfuscator.deobfuscate(embedResolverMethod); simpleDeobfuscator.decryptStrings(embedResolverMethod, deob); embedPassword = getEmbedPassword(embedResolverMethod); } if (embedPassword == null) return infos; foreach (var rsrc in module.Resources) { var resource = rsrc as EmbeddedResource; if (resource == null) continue; if (!Regex.IsMatch(resource.Name, "^cfd_([0-9a-f]{2})+_$")) continue; var asmData = decrypt(embedPassword, gunzip(resource.GetResourceData())); var mod = ModuleDefinition.ReadModule(new MemoryStream(asmData)); infos.Add(new AssemblyInfo(asmData, resource, mod.Assembly.FullName, mod.Assembly.Name.Name, DeobUtils.getExtension(mod.Kind))); } return infos; } static PasswordInfo getEmbedPassword(MethodDefinition method) { var instrs = method.Body.Instructions; for (int i = 0; i < instrs.Count - 3; i++) { int index = i; var ldstr1 = instrs[index++]; if (ldstr1.OpCode.Code != Code.Ldstr) continue; var passphrase = getString(ldstr1, instrs, ref index); var ldstr2 = instrs[index++]; if (ldstr2.OpCode.Code != Code.Ldstr) continue; var salt = getString(ldstr2, instrs, ref index); var ldci4 = instrs[index++]; if (!DotNetUtils.isLdcI4(ldci4)) continue; var ldstr3 = instrs[index++]; if (ldstr3.OpCode.Code != Code.Ldstr) continue; var iv = getString(ldstr3, instrs, ref index); return new PasswordInfo(passphrase, salt, iv); } return null; } static string getString(Instruction ldstr, IList instrs, ref int index) { var s = (string)ldstr.Operand; if (index >= instrs.Count) return s; var call = instrs[index]; if (call.OpCode.Code != Code.Call && call.OpCode.Code != Code.Callvirt) return s; index++; var calledMethod = call.Operand as MethodReference; if (calledMethod.Name == "ToUpper") return s.ToUpper(); if (calledMethod.Name == "ToLower") return s.ToLower(); throw new ApplicationException(string.Format("Unknown method {0}", calledMethod)); } } }