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 Apr 19, 2024
1 parent 009ccba commit c7fadb2
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 @@ -125,7 +125,7 @@ def carve_procmem(self, p: ProcessMemory) -> List[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}"
)
binaries += carved_bins
return binaries
Expand Down

0 comments on commit c7fadb2

Please sign in to comment.