de4dot-cex/blocks/cflow/CflowDeobfuscator.cs

60 lines
1.8 KiB
C#
Raw Normal View History

2011-12-21 03:11:05 +08:00
/*
2012-01-10 06:02:47 +08:00
Copyright (C) 2011-2012 de4dot@gmail.com
2011-12-21 03:11:05 +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.Collections.Generic;
2012-11-01 01:52:50 +08:00
using dot10.DotNet;
using dot10.DotNet.Emit;
2011-12-21 03:11:05 +08:00
namespace de4dot.blocks.cflow {
public class CflowDeobfuscator : ICflowDeobfuscator {
BlocksCflowDeobfuscator cflowDeobfuscator = new BlocksCflowDeobfuscator();
public CflowDeobfuscator() {
}
public CflowDeobfuscator(IBlocksDeobfuscator blocksDeobfuscator) {
cflowDeobfuscator.add(blocksDeobfuscator);
2011-12-21 03:11:05 +08:00
}
2012-11-01 01:52:50 +08:00
public void deobfuscate(MethodDef method) {
2011-12-21 03:11:05 +08:00
deobfuscate(method, (blocks) => {
cflowDeobfuscator.init(blocks);
2011-12-21 03:11:05 +08:00
cflowDeobfuscator.deobfuscate();
});
}
2012-11-01 01:52:50 +08:00
static bool hasNonEmptyBody(MethodDef method) {
return method.CilBody != null && method.CilBody.Instructions.Count > 0;
2011-12-21 03:11:05 +08:00
}
2012-11-01 01:52:50 +08:00
void deobfuscate(MethodDef method, Action<Blocks> handler) {
2011-12-21 03:11:05 +08:00
if (hasNonEmptyBody(method)) {
var blocks = new Blocks(method);
handler(blocks);
IList<Instruction> allInstructions;
IList<ExceptionHandler> allExceptionHandlers;
blocks.getCode(out allInstructions, out allExceptionHandlers);
DotNetUtils.restoreBody(method, allInstructions, allExceptionHandlers);
}
}
}
}