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

120 lines
3.2 KiB
C#
Raw Normal View History

2012-06-04 10:20:43 +08:00
/*
2013-01-02 00:03:16 +08:00
Copyright (C) 2011-2013 de4dot@gmail.com
2012-06-04 10:20:43 +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/>.
*/
using System;
using System.Collections.Generic;
using dnlib.DotNet;
2012-06-04 10:20:43 +08:00
using de4dot.blocks;
namespace de4dot.code.deobfuscators.ILProtector {
public class DeobfuscatorInfo : DeobfuscatorInfoBase {
public const string THE_NAME = "ILProtector";
public const string THE_TYPE = "il";
public DeobfuscatorInfo()
: base() {
}
public override string Name {
get { return THE_NAME; }
}
public override string Type {
get { return THE_TYPE; }
}
2013-01-19 20:03:57 +08:00
public override IDeobfuscator CreateDeobfuscator() {
2012-06-04 10:20:43 +08:00
return new Deobfuscator(new Deobfuscator.Options {
ValidNameRegex = validNameRegex.get(),
});
}
2013-01-19 20:03:57 +08:00
protected override IEnumerable<Option> GetOptionsInternal() {
2012-06-04 10:20:43 +08:00
return new List<Option>() {
};
}
}
class Deobfuscator : DeobfuscatorBase {
Options options;
string obfuscatorName = DeobfuscatorInfo.THE_NAME;
MainType mainType;
MethodsDecrypter methodsDecrypter;
internal class Options : OptionsBase {
}
public override string Type {
get { return DeobfuscatorInfo.THE_TYPE; }
}
public override string TypeLong {
get { return DeobfuscatorInfo.THE_NAME; }
}
public override string Name {
get { return obfuscatorName; }
}
public Deobfuscator(Options options)
: base(options) {
this.options = options;
}
2013-01-19 20:03:57 +08:00
protected override int DetectInternal() {
2012-06-04 10:20:43 +08:00
return mainType.Detected ? 150 : 0;
}
2013-01-19 20:03:57 +08:00
protected override void ScanForObfuscator() {
2012-06-04 10:20:43 +08:00
mainType = new MainType(module);
2013-01-19 20:03:57 +08:00
mainType.Find();
2012-06-04 10:20:43 +08:00
methodsDecrypter = new MethodsDecrypter(module, mainType);
2012-12-13 19:03:25 +08:00
if (mainType.Detected)
2013-01-19 20:03:57 +08:00
methodsDecrypter.Find();
2012-06-04 10:20:43 +08:00
if (mainType.Detected && methodsDecrypter.Detected && methodsDecrypter.Version != null)
2012-12-13 19:03:25 +08:00
obfuscatorName += " " + methodsDecrypter.Version;
2012-06-04 10:20:43 +08:00
}
2013-01-19 20:03:57 +08:00
public override void DeobfuscateBegin() {
base.DeobfuscateBegin();
2012-06-04 10:20:43 +08:00
2012-12-13 19:03:25 +08:00
if (mainType.Detected) {
if (methodsDecrypter.Detected) {
2013-01-19 20:03:57 +08:00
methodsDecrypter.Decrypt();
AddTypesToBeRemoved(methodsDecrypter.DelegateTypes, "Obfuscator method delegate type");
AddResourceToBeRemoved(methodsDecrypter.Resource, "Encrypted methods resource");
AddTypeToBeRemoved(mainType.InvokerDelegate, "Invoker delegate type");
AddFieldToBeRemoved(mainType.InvokerInstanceField, "Invoker delegate instance field");
2012-12-13 19:03:25 +08:00
foreach (var pm in mainType.ProtectMethods)
2013-01-19 20:03:57 +08:00
AddMethodToBeRemoved(pm, "Obfuscator 'Protect' init method");
mainType.CleanUp();
2012-12-13 19:03:25 +08:00
}
else
Logger.w("New ILProtector version. Can't decrypt methods (yet)");
2012-06-04 10:20:43 +08:00
}
}
2013-01-19 20:03:57 +08:00
public override IEnumerable<int> GetStringDecrypterMethods() {
2012-06-04 10:20:43 +08:00
return new List<int>();
}
}
}