Add native DumpIt ZDMP support - #2018
Open
joeyvictorino wants to merge 1 commit into
Open
Conversation
joeyvictorino
force-pushed
the
agent/native-zdmp-support
branch
from
August 19, 2026 07:56
8eaceca to
5501acd
Compare
joeyvictorino
force-pushed
the
agent/native-zdmp-support
branch
from
August 19, 2026 08:04
a3c459b to
7f46e03
Compare
joeyvictorino
marked this pull request as ready for review
August 19, 2026 08:06
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds native support for Comae/MAGNET DumpIt
.zdmpcompressed memory images by introducing a ZDMP translation layer that stacks ahead of the existing Windows crash-dump layer.Implementation
ZDMPcontainer header and chainedZBLKrecordsdissect.utilaccelerationZdmpStackerat stack order 10 so the existing Windows crash-dump stacker can operate on the decompressed streamValidation
.zdmpimagewindows.infosucceeds directly against the.zdmpin approximately 3 secondswindows.pslistsucceeds directly against the.zdmpin approximately 12 seconds and reports 437 processes.dmpZBLKrecords: 300/300 checksums matched the compressed payload and 0/300 matched the decompressed dataThe focused tests cover raw blocks, compressed blocks, short final blocks, CRC failures, truncated payloads, zero-length and oversized blocks, oversized decompression output, unsupported data/compression formats, LZNT1 error handling, and stacker detection.
The real-image validation confirms the layer produces byte-identical output to the reference conversion path while allowing Volatility to analyze the
.zdmpdirectly.Closes #1325