diff --git a/de4dot.code/deobfuscators/MyPEImage.cs b/de4dot.code/deobfuscators/MyPEImage.cs index f933887e..a3661cea 100644 --- a/de4dot.code/deobfuscators/MyPEImage.cs +++ b/de4dot.code/deobfuscators/MyPEImage.cs @@ -73,7 +73,7 @@ namespace de4dot.code.deobfuscators { this.peStream = peImage.CreateFullStream(); } - ImageSectionHeader FindSection(RVA rva) { + public ImageSectionHeader FindSection(RVA rva) { foreach (var section in peImage.ImageSectionHeaders) { if (section.VirtualAddress <= rva && rva < section.VirtualAddress + Math.Max(section.VirtualSize, section.SizeOfRawData)) return section;