I have some binary data that is compressed with Microsoft's LZNT1 compression.
Apparently it can be decompressed by calling RtlDecompressBuffer ntdll API.
But is there an easier way to decompress it, without having to write an app?
I have some binary data that is compressed with Microsoft's LZNT1 compression.
Apparently it can be decompressed by calling RtlDecompressBuffer ntdll API.
But is there an easier way to decompress it, without having to write an app?
Couldn't find anything so ended up writing one myself (link).