Skip to content

Commit

Permalink
Windows: Improve debugging output for pdbscan
Browse files Browse the repository at this point in the history
  • Loading branch information
ikelos committed Nov 28, 2024
1 parent 0233193 commit 3748cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion volatility3/framework/automagic/pdbscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def _method_layer_pdb_scan(
for kernel in kernels:
vollog.log(
constants.LOGLEVEL_VVVV,
f"Testing potential kernel for {kernel.get('pdb_name', 'Unknown')} at {kernel.get('signature_offset', -1)} with MZ offset at {kernel.get('mz_offset', -1)}",
f"Testing potential kernel for {kernel.get('pdb_name', 'Unknown')} at {kernel.get('signature_offset', -1):x} with MZ offset at {kernel.get('mz_offset', -1):x}",
)
valid_kernel = test_kernel(physical_layer_name, virtual_layer_name, kernel)
if valid_kernel is not None:
Expand Down

0 comments on commit 3748cb8

Please sign in to comment.