Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Commit 2e48f2d

Browse files
committed
Add 64bit address printing to malfind
1 parent 794d25e commit 2e48f2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volatility/plugins/malware/malfind.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,13 +495,13 @@ def render_text(self, outfd, data):
495495
data_start = vad.Start + 0x1000
496496

497497
outfd.write("{0}\n".format("\n".join(
498-
["{0:#010x} {1:<48} {2}".format(data_start + o, h, ''.join(c))
498+
["{0:#018x} {1:<48} {2}".format(data_start + o, h, ''.join(c))
499499
for o, h, c in utils.Hexdump(content)
500500
])))
501501

502502
outfd.write("\n")
503503
outfd.write("\n".join(
504-
["{0:#010x} {1:<16} {2}".format(o, h, i)
504+
["{0:#018x} {1:<16} {2}".format(o, h, i)
505505
for o, i, h in Disassemble(content, data_start)
506506
]))
507507

0 commit comments

Comments
 (0)