refactor: remove recursion from DerBackdoorer

This commit is contained in:
Dobin
2024-04-27 14:14:23 +01:00
parent a81c0c4d1a
commit aca1ed46bc
6 changed files with 99 additions and 96 deletions
+1 -1
View File
@@ -64,5 +64,5 @@ class SuperPeTest(unittest.TestCase):
self.assertEqual(export["size"], 416)
# VRA/Virt to Phys/Raw
raw = superpe.get_physical_address(0xD690) # BZ2_bzdopen export
raw = superpe.get_offset_from_rva(0xD690) # BZ2_bzdopen export
self.assertEqual(raw, 0xCA90)