10000 GitHub - forensicmike/gkziplib
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

forensicmike/gkziplib

Repository files navigation

gkziplib

About

GKZipLib was written for fast parsing of ZIP archives generated by GrayKey in .NET. Publicly available parsing libraries I tried in C# were either too slow at parsing large ZIPs or completely failed when attempting to parse GK zips (or both). Developing this library was a fantastic exercise that really enhanced my own personal understanding of how zip files work.

One of the big focuses of this library is being as fast as possible. Let's keep in mind GK zips can go from 5-10 GB to hundreds of GB in size. So how do we keep it fast? GKZipLib accomplishes this by parsing ONLY as much as it needs to, unless a file is identified (by path, etc) as needing to be extracted.

First, it parses the entire central directory into RAM. The CD is typically quite small so this is doable. On a file-by-file basis, you can then decide whether or not to load additional details such as the data's absolute offset within the file, the file's compressed/uncompressed size, and so on.

Probably the most potent usage of this is what I'm going to call "LINQ to GKZip" -- taking advantage of the fact that the library implements IEnumerable and thus can be called with a simple foreach. Please see Example.cs for the simplest usage.

Contact the author on Discord - forensicmike#6426 or Twitter DM @forensicmike1

Precompiled

See Releases

Building from source

To build from source, first clone the repo:

git clone https://github.com/forensicmike/gkziplib.git

cd gkziplib

git submodule update --init

Once that's done, you can open GKZipLib.sln and should be able to build.

CI

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

0