sepinf-inc / IPED

IPED Digital Forensic Tool. It is an open source software that can be used to process and analyze digital evidence, often seized at crime scenes by law enforcement or in a corporate investigation by private examiners.
Other
884 stars 209 forks source link

Optimize expansion of certain RAR files #2084

Closed lfcnassif closed 4 months ago

lfcnassif commented 4 months ago

As reported on #2082, SevenZipParser is taking a long time to extract files (actually folders) of certain RAR files. Taking a look at the code, we are using the extractSlow(...) method to extract folders and the faster extract(...) method to extract contained files. We should use the faster method for both folders and files.