de4dot-cex/de4dot.code/deobfuscators/Babel_NET/StringDecrypter.cs

584 lines
17 KiB
C#
Raw Normal View History

2012-01-08 03:27:07 +08:00
/*
2012-01-10 06:04:52 +08:00
Copyright (C) 2011-2012 de4dot@gmail.com
2012-01-08 03:27:07 +08:00
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/>.
*/
2012-01-14 17:37:15 +08:00
using System;
2012-01-08 03:27:07 +08:00
using System.Collections.Generic;
using System.IO;
2012-01-14 17:37:15 +08:00
using System.Text;
using dot10.DotNet;
using dot10.DotNet.Emit;
2012-01-08 03:27:07 +08:00
using de4dot.blocks;
2012-06-12 16:37:51 +08:00
using de4dot.blocks.cflow;
2012-01-08 03:27:07 +08:00
namespace de4dot.code.deobfuscators.Babel_NET {
class StringDecrypter {
ModuleDefinition module;
2012-06-12 16:37:51 +08:00
ResourceDecrypter resourceDecrypter;
2012-06-07 03:16:18 +08:00
ISimpleDeobfuscator simpleDeobfuscator;
TypeDef decrypterType;
2012-01-08 03:27:07 +08:00
EmbeddedResource encryptedResource;
2012-01-14 17:37:15 +08:00
IDecrypterInfo decrypterInfo;
interface IDecrypterInfo {
MethodDef Decrypter { get; }
2012-01-14 17:37:15 +08:00
bool NeedsResource { get; }
void initialize(ModuleDefinition module, EmbeddedResource resource);
string decrypt(object[] args);
}
2012-01-19 12:38:58 +08:00
// Babel .NET 2.x
2012-01-14 17:37:15 +08:00
class DecrypterInfoV1 : IDecrypterInfo {
public MethodDef Decrypter { get; set; }
2012-01-19 12:38:58 +08:00
public bool NeedsResource {
get { return false; }
}
public void initialize(ModuleDefinition module, EmbeddedResource resource) {
}
public string decrypt(object[] args) {
return decrypt((string)args[0], (int)args[1]);
}
string decrypt(string s, int k) {
var sb = new StringBuilder(s.Length);
foreach (var c in s)
sb.Append((char)(c ^ k));
return sb.ToString();
}
}
class DecrypterInfoV2 : IDecrypterInfo {
2012-01-14 17:37:15 +08:00
byte[] key;
public MethodDef Decrypter { get; set; }
2012-01-14 17:37:15 +08:00
public bool NeedsResource {
get { return true; }
}
public void initialize(ModuleDefinition module, EmbeddedResource resource) {
key = resource.GetResourceData();
if (key.Length != 0x100)
throw new ApplicationException(string.Format("Unknown key length: {0}", key.Length));
}
public string decrypt(object[] args) {
return decrypt((string)args[0], (int)args[1]);
}
string decrypt(string s, int k) {
var sb = new StringBuilder(s.Length);
byte b = key[(byte)k];
foreach (var c in s)
sb.Append((char)(c ^ (b | k)));
return sb.ToString();
}
}
2012-01-19 12:38:58 +08:00
class DecrypterInfoV3 : IDecrypterInfo {
2012-01-14 17:37:15 +08:00
Dictionary<int, string> offsetToString = new Dictionary<int, string>();
2012-06-12 16:37:51 +08:00
ResourceDecrypter resourceDecrypter;
InstructionEmulator emulator = new InstructionEmulator();
2012-01-14 17:37:15 +08:00
2012-06-12 16:37:51 +08:00
public IList<Instruction> OffsetCalcInstructions { get; set; }
public MethodDef Decrypter { get; set; }
2012-01-14 17:37:15 +08:00
public bool NeedsResource {
get { return true; }
}
2012-06-12 16:37:51 +08:00
public DecrypterInfoV3(ResourceDecrypter resourceDecrypter) {
this.resourceDecrypter = resourceDecrypter;
}
2012-01-14 17:37:15 +08:00
public void initialize(ModuleDefinition module, EmbeddedResource resource) {
2012-06-12 16:37:51 +08:00
var decrypted = resourceDecrypter.decrypt(resource.GetResourceData());
2012-01-14 17:37:15 +08:00
var reader = new BinaryReader(new MemoryStream(decrypted));
while (reader.BaseStream.Position < reader.BaseStream.Length)
2012-06-12 16:37:51 +08:00
offsetToString[getOffset((int)reader.BaseStream.Position)] = reader.ReadString();
}
MethodDef dummyMethod;
2012-06-12 16:37:51 +08:00
int getOffset(int offset) {
if (OffsetCalcInstructions == null || OffsetCalcInstructions.Count == 0)
return offset;
if (dummyMethod == null) {
dummyMethod = new MethodDef("", 0, new TypeReference("", "", null, null));
2012-06-12 16:37:51 +08:00
dummyMethod.Body = new MethodBody(dummyMethod);
}
emulator.init(dummyMethod);
emulator.push(new Int32Value(offset));
foreach (var instr in OffsetCalcInstructions)
emulator.emulate(instr);
return ((Int32Value)emulator.pop()).value;
2012-01-14 17:37:15 +08:00
}
public string decrypt(object[] args) {
return decrypt((int)args[0]);
}
string decrypt(int offset) {
2012-06-12 16:37:51 +08:00
return offsetToString[offset];
2012-01-14 17:37:15 +08:00
}
}
2012-01-08 03:27:07 +08:00
public bool Detected {
get { return decrypterType != null; }
}
public TypeDef Type {
2012-01-08 03:27:07 +08:00
get { return decrypterType; }
}
public MethodDef DecryptMethod {
2012-01-14 17:37:15 +08:00
get { return decrypterInfo == null ? null : decrypterInfo.Decrypter; }
2012-01-08 03:27:07 +08:00
}
public EmbeddedResource Resource {
get { return encryptedResource; }
}
2012-06-12 16:37:51 +08:00
public StringDecrypter(ModuleDefinition module, ResourceDecrypter resourceDecrypter) {
2012-01-08 03:27:07 +08:00
this.module = module;
2012-06-12 16:37:51 +08:00
this.resourceDecrypter = resourceDecrypter;
2012-01-08 03:27:07 +08:00
}
2012-06-07 03:16:18 +08:00
public void find(ISimpleDeobfuscator simpleDeobfuscator) {
this.simpleDeobfuscator = simpleDeobfuscator;
2012-01-08 03:27:07 +08:00
foreach (var type in module.Types) {
2012-01-14 17:37:15 +08:00
var info = checkDecrypterType(type);
if (info == null)
2012-01-08 03:27:07 +08:00
continue;
decrypterType = type;
2012-01-14 17:37:15 +08:00
decrypterInfo = info;
2012-01-08 03:27:07 +08:00
return;
}
}
IDecrypterInfo checkDecrypterType(TypeDef type) {
2012-01-08 03:27:07 +08:00
if (type.HasEvents)
2012-01-14 17:37:15 +08:00
return null;
if (type.NestedTypes.Count > 2)
return null;
if (type.Fields.Count > 1)
return null;
foreach (var nested in type.NestedTypes) {
var info = checkNested(type, nested);
if (info != null)
return info;
}
2012-01-19 12:38:58 +08:00
return checkDecrypterTypeBabel2x(type);
}
IDecrypterInfo checkDecrypterTypeBabel2x(TypeDef type) {
2012-01-19 12:38:58 +08:00
if (type.HasEvents || type.HasProperties || type.HasNestedTypes)
return null;
if (type.HasFields || type.Methods.Count != 1)
return null;
var decrypter = type.Methods[0];
if (!checkDecryptMethodBabel2x(decrypter))
return null;
return new DecrypterInfoV1 { Decrypter = decrypter };
}
bool checkDecryptMethodBabel2x(MethodDef method) {
2012-01-19 12:38:58 +08:00
if (!method.IsStatic || !method.IsPublic)
return false;
if (method.Body == null)
return false;
if (method.Name == ".cctor")
return false;
if (!DotNetUtils.isMethod(method, "System.String", "(System.String,System.Int32)"))
return false;
int stringLength = 0, stringToCharArray = 0, stringCtor = 0;
foreach (var instr in method.Body.Instructions) {
var calledMethod = instr.Operand as MethodReference;
if (calledMethod == null)
continue;
switch (instr.OpCode.Code) {
case Code.Call:
case Code.Callvirt:
if (calledMethod.FullName == "System.Int32 System.String::get_Length()")
stringLength++;
else if (calledMethod.FullName == "System.Char[] System.String::ToCharArray()")
stringToCharArray++;
else
return false;
break;
case Code.Newobj:
if (calledMethod.FullName == "System.Void System.String::.ctor(System.Char[])")
stringCtor++;
else
return false;
break;
default:
continue;
}
}
return stringLength == 1 && stringToCharArray == 1 && stringCtor == 1;
2012-01-14 17:37:15 +08:00
}
2012-01-08 03:27:07 +08:00
IDecrypterInfo checkNested(TypeDef type, TypeDef nested) {
2012-01-08 03:27:07 +08:00
if (nested.HasProperties || nested.HasEvents)
2012-01-14 17:37:15 +08:00
return null;
if (DotNetUtils.getMethod(nested, ".ctor") == null)
return null;
2012-06-12 16:37:51 +08:00
if (nested.Fields.Count == 1 || nested.Fields.Count == 3) {
2012-01-14 17:37:15 +08:00
// 4.0+
2012-06-12 16:37:51 +08:00
if (!hasFieldType(nested.Fields, nested))
2012-01-14 17:37:15 +08:00
return null;
2012-06-07 03:16:18 +08:00
var decrypterBuilderMethod = DotNetUtils.getMethod(nested, "System.Reflection.Emit.MethodBuilder", "(System.Reflection.Emit.TypeBuilder)");
if (decrypterBuilderMethod == null)
2012-01-14 17:37:15 +08:00
return null;
2012-06-12 16:37:51 +08:00
resourceDecrypter.DecryptMethod = ResourceDecrypter.findDecrypterMethod(DotNetUtils.getMethod(nested, ".ctor"));
2012-01-14 17:37:15 +08:00
var nestedDecrypter = DotNetUtils.getMethod(nested, "System.String", "(System.Int32)");
if (nestedDecrypter == null || nestedDecrypter.IsStatic)
return null;
var decrypter = DotNetUtils.getMethod(type, "System.String", "(System.Int32)");
if (decrypter == null || !decrypter.IsStatic)
return null;
2012-06-07 03:16:18 +08:00
simpleDeobfuscator.deobfuscate(decrypterBuilderMethod);
2012-06-12 16:37:51 +08:00
return new DecrypterInfoV3(resourceDecrypter) {
2012-06-07 03:16:18 +08:00
Decrypter = decrypter,
2012-06-12 16:37:51 +08:00
OffsetCalcInstructions = getOffsetCalcInstructions(decrypterBuilderMethod),
2012-06-07 03:16:18 +08:00
};
}
else if (nested.Fields.Count == 2) {
2012-01-14 17:37:15 +08:00
// 3.0 - 3.5
if (checkFields(nested, "System.Collections.Hashtable", nested)) {
2012-06-12 16:37:51 +08:00
// 3.0 - 3.5
2012-01-14 17:37:15 +08:00
var nestedDecrypter = DotNetUtils.getMethod(nested, "System.String", "(System.Int32)");
if (nestedDecrypter == null || nestedDecrypter.IsStatic)
return null;
var decrypter = DotNetUtils.getMethod(type, "System.String", "(System.Int32)");
if (decrypter == null || !decrypter.IsStatic)
return null;
2012-06-12 16:37:51 +08:00
resourceDecrypter.DecryptMethod = ResourceDecrypter.findDecrypterMethod(DotNetUtils.getMethod(nested, ".ctor"));
return new DecrypterInfoV3(resourceDecrypter) { Decrypter = decrypter };
2012-01-14 17:37:15 +08:00
}
else if (checkFields(nested, "System.Byte[]", nested)) {
// 3.0
var nestedDecrypter = DotNetUtils.getMethod(nested, "System.String", "(System.String,System.Int32)");
if (nestedDecrypter == null || nestedDecrypter.IsStatic)
return null;
var decrypter = DotNetUtils.getMethod(type, "System.String", "(System.String,System.Int32)");
if (decrypter == null || !decrypter.IsStatic)
return null;
2012-01-19 12:38:58 +08:00
return new DecrypterInfoV2 { Decrypter = decrypter };
2012-01-14 17:37:15 +08:00
}
else
return null;
}
2012-01-08 03:27:07 +08:00
2012-01-14 17:37:15 +08:00
return null;
}
2012-06-12 16:37:51 +08:00
class ReflectionToCecilMethodCreator {
MethodDef method;
2012-06-12 16:37:51 +08:00
List<Instruction> instructions = new List<Instruction>();
InstructionEmulator emulator;
int index;
class UserValue : UnknownValue {
public readonly object obj;
public UserValue(object obj) {
this.obj = obj;
}
public override string ToString() {
if (obj == null)
return "<null>";
return obj.ToString();
}
}
public List<Instruction> Instructions {
get { return instructions; }
}
public ReflectionToCecilMethodCreator(MethodDef method) {
2012-06-12 16:37:51 +08:00
this.method = method;
this.emulator = new InstructionEmulator(method);
}
public bool create() {
int arrayIndex;
Value array;
object value;
while (true) {
var instr = method.Body.Instructions[index];
switch (instr.OpCode.Code) {
case Code.Ret:
return true;
case Code.Newarr:
var arrayType = (TypeReference)instr.Operand;
int arrayCount = ((Int32Value)emulator.pop()).value;
if (arrayType.FullName == "System.Char")
emulator.push(new UserValue(new char[arrayCount]));
else
emulator.push(new UnknownValue());
break;
case Code.Call:
case Code.Callvirt:
if (!doCall(instr))
return false;
break;
case Code.Ldelem_U1:
arrayIndex = ((Int32Value)emulator.pop()).value;
array = (Value)emulator.pop();
if (array is UserValue)
emulator.push(new Int32Value(((byte[])((UserValue)array).obj)[arrayIndex]));
else
emulator.push(Int32Value.createUnknownUInt8());
break;
case Code.Stelem_I1:
value = emulator.pop();
arrayIndex = ((Int32Value)emulator.pop()).value;
array = (Value)emulator.pop();
if (array is UserValue)
((byte[])((UserValue)array).obj)[arrayIndex] = (byte)((Int32Value)value).value;
break;
case Code.Stelem_I2:
value = emulator.pop();
arrayIndex = ((Int32Value)emulator.pop()).value;
array = (Value)emulator.pop();
if (array is UserValue)
((char[])((UserValue)array).obj)[arrayIndex] = (char)((Int32Value)value).value;
break;
case Code.Ldelem_Ref:
arrayIndex = ((Int32Value)emulator.pop()).value;
array = (Value)emulator.pop();
var userValue = array as UserValue;
if (userValue != null && userValue.obj is string[])
emulator.push(new StringValue(((string[])userValue.obj)[arrayIndex]));
else
emulator.push(new UnknownValue());
break;
case Code.Ldsfld:
emulator.push(new UserValue((FieldReference)instr.Operand));
break;
default:
emulator.emulate(instr);
break;
}
index++;
}
}
bool doCall(Instruction instr) {
var calledMethod = (MethodReference)instr.Operand;
if (calledMethod.FullName == "System.Byte[] System.Convert::FromBase64String(System.String)") {
emulator.push(new UserValue(Convert.FromBase64String(((StringValue)emulator.pop()).value)));
return true;
}
else if (calledMethod.FullName == "System.String System.Text.Encoding::GetString(System.Byte[])") {
emulator.push(new StringValue(Encoding.UTF8.GetString((byte[])((UserValue)emulator.pop()).obj)));
return true;
}
else if (calledMethod.FullName == "System.Int32 System.Int32::Parse(System.String)") {
emulator.push(new Int32Value(int.Parse(((StringValue)emulator.pop()).value)));
return true;
}
else if (calledMethod.FullName == "System.String[] System.String::Split(System.Char[])") {
var ary = (char[])((UserValue)emulator.pop()).obj;
var s = ((StringValue)emulator.pop()).value;
emulator.push(new UserValue(s.Split(ary)));
return true;
}
else if (calledMethod.HasThis && calledMethod.DeclaringType.FullName == "System.Reflection.Emit.ILGenerator" && calledMethod.Name == "Emit") {
Value operand = null;
if (calledMethod.Parameters.Count == 2)
operand = emulator.pop();
var opcode = reflectionToCecilOpCode((FieldReference)((UserValue)emulator.pop()).obj);
emulator.pop(); // the this ptr
addInstruction(new Instruction {
OpCode = opcode,
Operand = createCecilOperand(opcode, operand),
});
return true;
}
else {
emulator.emulate(instr);
return true;
}
}
object createCecilOperand(OpCode opcode, Value op) {
if (op is Int32Value)
return ((Int32Value)op).value;
if (op is StringValue)
return ((StringValue)op).value;
return null;
}
void addInstruction(Instruction instr) {
instructions.Add(instr);
}
static OpCode reflectionToCecilOpCode(FieldReference reflectionField) {
var field = typeof(OpCodes).GetField(reflectionField.Name);
if (field == null || field.FieldType != typeof(OpCode))
return null;
return (OpCode)field.GetValue(null);
}
}
static List<Instruction> getOffsetCalcInstructions(MethodDef method) {
2012-06-12 16:37:51 +08:00
var creator = new ReflectionToCecilMethodCreator(method);
creator.create();
var instrs = creator.Instructions;
int index = 0;
index = findInstruction(instrs, index, OpCodes.Conv_I4);
if (index < 0)
return null;
int startInstr = ++index;
index = findInstruction(instrs, index, OpCodes.Box);
if (index < 0)
return null;
int endInstr = index - 1;
var transformInstructions = new List<Instruction>();
for (int i = startInstr; i <= endInstr; i++)
transformInstructions.Add(instrs[i]);
return transformInstructions;
}
static int findInstruction(IList<Instruction> instrs, int index, OpCode opcode) {
if (index < 0)
return -1;
for (int i = index; i < instrs.Count; i++) {
if (instrs[i].OpCode == opcode)
return i;
}
return -1;
}
static bool hasFieldType(IEnumerable<FieldDef> fields, TypeReference fieldType) {
2012-06-12 16:37:51 +08:00
foreach (var field in fields) {
if (MemberReferenceHelper.compareTypes(field.FieldType, fieldType))
return true;
}
return false;
}
static int getOffsetMagic(MethodDef method) {
2012-06-07 03:16:18 +08:00
var instrs = method.Body.Instructions;
for (int i = 0; i < instrs.Count - 4; i++) {
int index = i;
var ldsfld1 = instrs[index++];
if (ldsfld1.OpCode.Code != Code.Ldsfld)
continue;
var ldci4 = instrs[index++];
if (!DotNetUtils.isLdcI4(ldci4))
continue;
var callvirt = instrs[index++];
if (callvirt.OpCode.Code != Code.Callvirt)
continue;
var calledMethod = callvirt.Operand as MethodReference;
if (calledMethod == null)
continue;
if (calledMethod.FullName != "System.Void System.Reflection.Emit.ILGenerator::Emit(System.Reflection.Emit.OpCode,System.Int32)")
continue;
if (!DotNetUtils.isLdloc(instrs[index++]))
continue;
var ldsfld2 = instrs[index++];
if (ldsfld2.OpCode.Code != Code.Ldsfld)
continue;
var field = ldsfld2.Operand as FieldReference;
if (field == null)
continue;
if (field.FullName != "System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor")
continue;
// Here if Babel.NET 5.5
return DotNetUtils.getLdcI4Value(ldci4);
}
// Here if Babel.NET <= 5.0
return 0;
}
bool checkFields(TypeDef type, string fieldType1, TypeDef fieldType2) {
2012-01-14 17:37:15 +08:00
if (type.Fields.Count != 2)
2012-01-08 03:27:07 +08:00
return false;
2012-01-14 17:37:15 +08:00
if (type.Fields[0].FieldType.FullName != fieldType1 &&
type.Fields[1].FieldType.FullName != fieldType1)
return false;
if (!MemberReferenceHelper.compareTypes(type.Fields[0].FieldType, fieldType2) &&
!MemberReferenceHelper.compareTypes(type.Fields[1].FieldType, fieldType2))
2012-01-08 03:27:07 +08:00
return false;
return true;
}
public void initialize() {
if (decrypterType == null)
return;
if (encryptedResource != null)
return;
2012-01-14 17:37:15 +08:00
if (decrypterInfo.NeedsResource) {
2012-01-18 14:38:35 +08:00
encryptedResource = BabelUtils.findEmbeddedResource(module, decrypterType);
2012-01-14 17:37:15 +08:00
if (encryptedResource == null)
return;
}
decrypterInfo.initialize(module, encryptedResource);
2012-01-08 03:27:07 +08:00
}
2012-01-14 17:37:15 +08:00
public string decrypt(object[] args) {
return decrypterInfo.decrypt(args);
2012-01-08 03:27:07 +08:00
}
}
}