https://github.com/rustyx/unpack_lznt1
Unpacks Microsoft LZNT1-compressed files by calling RtlDecompressBuffer
https://github.com/rustyx/unpack_lznt1
Last synced: about 1 year ago
JSON representation
Unpacks Microsoft LZNT1-compressed files by calling RtlDecompressBuffer
- Host: GitHub
- URL: https://github.com/rustyx/unpack_lznt1
- Owner: rustyx
- Created: 2014-09-10T10:28:37.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-10T12:08:25.000Z (almost 12 years ago)
- Last Synced: 2025-03-25T04:36:58.532Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 133 KB
- Stars: 12
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
unpack_lznt1
============
A simple command-line Windows tool to uncompress Microsoft LZNT1-compressed files by calling [RtlDecompressBuffer](http://msdn.microsoft.com/en-us/library/windows/hardware/ff552191(v=vs.85).aspx).
Can skip bytes at the beginning/end of the compressed input.
Known limitations:
* Works on only small files, since it reads the whole file into memory.