de4dot-cex/de4dot.code/deobfuscators/Xenocode/Deobfuscator.cs

122 lines
3.4 KiB
C#
Raw Normal View History

/*
2012-01-10 06:02:47 +08:00
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 <http://www.gnu.org/licenses/>.
*/
using System.Collections.Generic;
using Mono.Cecil;
namespace de4dot.code.deobfuscators.Xenocode {
public class DeobfuscatorInfo : DeobfuscatorInfoBase {
public const string THE_NAME = "Xenocode";
2011-11-12 18:31:07 +08:00
public const string THE_TYPE = "xc";
2011-11-23 18:32:36 +08:00
const string DEFAULT_REGEX = @"!^[oO01l]{4,}$&!^(get_|set_|add_|remove_|_)?x[a-f0-9]{16,}$&" + DeobfuscatorBase.DEFAULT_VALID_NAME_REGEX;
public DeobfuscatorInfo()
: base(DEFAULT_REGEX) {
}
public override string Name {
get { return THE_NAME; }
}
public override string Type {
2011-11-12 18:31:07 +08:00
get { return THE_TYPE; }
}
public override IDeobfuscator createDeobfuscator() {
return new Deobfuscator(new Deobfuscator.Options {
ValidNameRegex = validNameRegex.get(),
});
}
}
class Deobfuscator : DeobfuscatorBase {
bool foundXenocodeAttribute = false;
StringDecrypter stringDecrypter;
internal class Options : OptionsBase {
}
public override string Type {
2011-11-12 18:31:07 +08:00
get { return DeobfuscatorInfo.THE_TYPE; }
}
public override string TypeLong {
get { return DeobfuscatorInfo.THE_NAME; }
}
public override string Name {
2011-11-12 18:31:07 +08:00
get { return TypeLong; }
}
public Deobfuscator(Options options)
: base(options) {
}
protected override int detectInternal() {
int val = 0;
2012-02-29 07:13:57 +08:00
if (stringDecrypter.Detected)
val += 100;
2012-02-29 07:13:57 +08:00
if (foundXenocodeAttribute)
val += 10;
return val;
}
protected override void scanForObfuscator() {
findXenocodeAttribute();
stringDecrypter = new StringDecrypter(module);
stringDecrypter.find();
}
void findXenocodeAttribute() {
foreach (var type in module.Types) {
switch (type.FullName) {
case "Xenocode.Client.Attributes.AssemblyAttributes.ProcessedByXenocode":
case "Xenocode.Client.Attributes.AssemblyAttributes.SuppressDisassembly":
2012-05-06 19:07:34 +08:00
case "XenoCode.User.Attributes.AssemblyAttributes.ProcessedByXenoCode":
case "XenoCode.User.Attributes.AssemblyAttributes.SuppressDisassembly":
addAttributeToBeRemoved(type, "Obfuscator attribute");
foundXenocodeAttribute = true;
break;
}
}
}
public override void deobfuscateBegin() {
base.deobfuscateBegin();
2012-07-28 10:22:17 +08:00
staticStringInliner.add(stringDecrypter.Method, (method, gim, args) => stringDecrypter.decrypt((string)args[0], (int)args[1]));
DeobfuscatedFile.stringDecryptersAdded();
}
public override void deobfuscateEnd() {
if (CanRemoveStringDecrypterType)
addTypeToBeRemoved(stringDecrypter.Type, "String decrypter type");
base.deobfuscateEnd();
}
2012-02-25 13:25:40 +08:00
public override IEnumerable<int> getStringDecrypterMethods() {
var list = new List<int>();
2011-11-06 22:24:30 +08:00
if (stringDecrypter.Method != null)
2012-02-25 13:25:40 +08:00
list.Add(stringDecrypter.Method.MetadataToken.ToInt32());
return list;
}
}
}