Skip to content

Commit

Permalink
extract_manager: Show VA instead of offset, offset will be always 0
Browse files Browse the repository at this point in the history
  • Loading branch information
psrok1 committed May 9, 2024
1 parent bb4a6a7 commit a32b73d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion malduck/extractor/extract_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def carve_procmem(self, p: ProcessMemory) -> Iterator[ProcessMemoryBinary]:
for carved_bin in carved_bins:
log.debug(
f"carve: Found {carved_bin.__class__.__name__} "
f"at offset {carved_bin.regions[0].offset}"
f"at {carved_bin.imgbase}"
)
yield carved_bin

Expand Down

0 comments on commit a32b73d

Please sign in to comment.