Add Acronis TIBX loader#1882
Open
falklindner wants to merge 1 commit into
Open
Conversation
Add a loader for Acronis CyberBackup/CyberProtect TIBX backup archives. Each backed-up partition is mapped as a volume, letting filesystem and OS detection take over. Supports split archives (auto-stitched), encrypted archives (password from the keychain via -K/-Kv), and recovery-point selection via the tibx:// scheme URI query parameter. Depends on dissect.archive with the tibx subpackage. Co-Authored-By: Matthias Niedermaier <matthias.niedermaier@hs-augsburg.de> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Add a loader for Acronis CyberBackup/CyberProtect TIBX backup archives.
Depends on the TIBX parser in fox-it/dissect.archive (PR fox-it/dissect.archive#30)
Add Acronis TIBX loader
Each backed-up partition in a TIBX archive is mapped as a volume, letting filesystem and OS detection take over — the same pattern as
VbkLoader.Proposed changes
dissect/target/loaders/tibx.py— theTibxLoaderclassdissect/target/loader.py— register the loader (aftervbk)tests/loaders/test_tibx.py— 6 testsFeatures
.tibxextension + ARCH magic bytes-K/-Kv)tibx://scheme URI query parameter (?recovery-point=N)Testing
6 tests: detection (positive + negative), volume mapping with filesystem verification (FAT12),
Target.openintegration, encrypted archive handling (missing password + keychain lookup), and error handling. Tests build synthetic archives inline — no binary fixtures.Note on exFAT
exFAT volumes in TIBX archives will produce correct file reads once fox-it/dissect.fat#37 and #1466 merge. Until then, directory listing works but file content reads are affected by the known block-size issue. NTFS and FAT32 volumes work fully.
Acknowledgments
Thanks to @mniedermaier for his contributions and support.
Checklist
fox-it/dissect.archive#20(parser PR)