de4dot-cex/de4dot.blocks/cflow/DupBlockDeobfuscator.cs

50 lines
1.5 KiB
C#
Raw Permalink Normal View History

2012-12-21 20:55:57 +08:00
/*
2015-10-30 05:45:26 +08:00
Copyright (C) 2011-2015 de4dot@gmail.com
2012-12-21 20:55:57 +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.Emit;
namespace de4dot.blocks.cflow {
// If a block is just a dup followed by a bcc, try to append the block
// to all its sources. Will fix some SA assemblies.
class DupBlockCflowDeobfuscator : BlockDeobfuscator {
2013-01-19 20:03:57 +08:00
protected override bool Deobfuscate(Block block) {
2012-12-21 20:55:57 +08:00
if (block.Instructions.Count != 2)
return false;
if (block.Instructions[0].OpCode.Code != Code.Dup)
return false;
2013-01-19 20:03:57 +08:00
if (!block.LastInstr.IsConditionalBranch() && block.LastInstr.OpCode.Code != Code.Switch)
2012-12-21 20:55:57 +08:00
return false;
bool modified = false;
foreach (var source in new List<Block>(block.Sources)) {
2013-01-19 20:03:57 +08:00
if (source.GetOnlyTarget() != block)
2012-12-21 20:55:57 +08:00
continue;
2013-01-19 20:03:57 +08:00
if (!source.CanAppend(block))
2012-12-21 20:55:57 +08:00
continue;
2013-01-19 20:03:57 +08:00
source.Append(block);
2012-12-21 20:55:57 +08:00
modified = true;
}
return modified;
}
}
}