Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gleeda committed Sep 4, 2019
1 parent fe4d794 commit b46b6d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion volatility/memtriage.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def parse_malfind_data(data, out, output = "text"):
mode = "64bit"
for proc, pid, address, vadtag, protection, flags, data in datas:
out.write("Process: {}, Pid: {}\n".format(proc, pid))
out.write("VadTag: {}, Protection: {}, Flags: {}\n\n".format(vadtag, protection, flags)
out.write("VadTag: {}, Protection: {}, Flags: {}\n\n".format(vadtag, protection, flags))
out.write("Raw data at address {0:#x}: {1}\n\n".format(address, data))
out.write("Disassembly:\n")
out.write("\n".join(
Expand Down

0 comments on commit b46b6d4

Please sign in to comment.