/* Copyright (C) 2011-2015 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.Collections.Generic; using dnlib.DotNet; using dnlib.DotNet.Emit; using de4dot.blocks; namespace de4dot.code.deobfuscators.Dotfuscator { class StringDecrypter { ModuleDefMD module; MethodDefAndDeclaringTypeDict stringDecrypterMethods = new MethodDefAndDeclaringTypeDict(); public class StringDecrypterInfo { public MethodDef method; public int magic; public StringDecrypterInfo(MethodDef method, int magic) { this.method = method; this.magic = magic; } } public bool Detected => stringDecrypterMethods.Count > 0; public IEnumerable StringDecrypters { get { var list = new List(stringDecrypterMethods.Count); foreach (var info in stringDecrypterMethods.GetValues()) list.Add(info.method); return list; } } public IEnumerable StringDecrypterInfos => stringDecrypterMethods.GetValues(); public StringDecrypter(ModuleDefMD module) => this.module = module; public void Find(ISimpleDeobfuscator simpleDeobfuscator) { foreach (var type in module.GetTypes()) FindStringDecrypterMethods(type, simpleDeobfuscator); } void FindStringDecrypterMethods(TypeDef type, ISimpleDeobfuscator simpleDeobfuscator) { foreach (var method in DotNetUtils.FindMethods(type.Methods, "System.String", new string[] { "System.String", "System.Int32" })) { if (method.Body.HasExceptionHandlers) continue; if (DotNetUtils.GetMethodCalls(method, "System.Char[] System.String::ToCharArray()") != 1) continue; if (DotNetUtils.GetMethodCalls(method, "System.String System.String::Intern(System.String)") != 1) continue; simpleDeobfuscator.Deobfuscate(method); var instrs = method.Body.Instructions; for (int i = 0; i < instrs.Count - 6; i++) { var ldarg = instrs[i]; if (!ldarg.IsLdarg() || ldarg.GetParameterIndex() != 0) continue; var callvirt = instrs[i + 1]; if (callvirt.OpCode.Code != Code.Callvirt) continue; var calledMethod = callvirt.Operand as MemberRef; if (calledMethod == null || calledMethod.FullName != "System.Char[] System.String::ToCharArray()") continue; var stloc = instrs[i + 2]; if (!stloc.IsStloc()) continue; var ldci4 = instrs[i + 3]; if (!ldci4.IsLdcI4()) continue; var ldarg2 = instrs[i + 4]; if (!ldarg2.IsLdarg() || ldarg2.GetParameterIndex() != 1) continue; var opAdd1 = instrs[i + 5]; if (opAdd1.OpCode != OpCodes.Add) continue; int magicAdd = 0; int j = i + 6; while (j < instrs.Count - 1 && !instrs[j].IsStloc()) { var ldcOp = instrs[j]; var addOp = instrs[j + 1]; if (ldcOp.IsLdcI4() && addOp.OpCode == OpCodes.Add) { magicAdd = magicAdd + ldcOp.GetLdcI4Value(); j = j + 2; } else j++; } var info = new StringDecrypterInfo(method, ldci4.GetLdcI4Value() + magicAdd); stringDecrypterMethods.Add(info.method, info); Logger.v("Found string decrypter method: {0}, magic: 0x{1:X8}", Utils.RemoveNewlines(info.method), info.magic); break; } } } public string Decrypt(IMethod method, string encrypted, int value) { var info = stringDecrypterMethods.FindAny(method); char[] chars = encrypted.ToCharArray(); byte key = (byte)(info.magic + value); for (int i = 0; i < chars.Length; i++) { char c = chars[i]; byte b1 = (byte)((byte)c ^ key++); byte b2 = (byte)((byte)(c >> 8) ^ key++); chars[i] = (char)((b1 << 8) | b2); } return new string(chars); } } }