-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# xpress lz77 decompression algorithms | ||
xpress LZ77 Plain and xpress LZ77+Huffman Decompression algorithms : A rust implementation using pyo3. | ||
|
||
# Context | ||
Both algorithms are used by microsoft and can help with digital forensics: | ||
|
||
- Windows 1.X prefetch files | ||
- Windows Hibernation | ||
|
||
The use of pyo3 make the creation of a python package possible for integration in python3 tools where decompression performances are required. | ||
|
||
## Use cases | ||
|
||
- https://www.forensicxlab.com/posts/prefetch/ | ||
- https://www.forensicxlab.com/posts/hibernation/ | ||
|
||
|
||
# References | ||
|
||
- Pseudo code algorithm : https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-XCA/%5bMS-XCA%5d.pdf [Section 2.2] |
This file contains 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