mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-23 00:06:17 -04:00
Completed GZIP extraction
This commit is contained in:
parent
c077b22410
commit
4e57b4be88
3 changed files with 222 additions and 23 deletions
|
@ -46,7 +46,10 @@ class ExtractFiles extends Operation {
|
|||
detectedFiles.forEach(detectedFile => {
|
||||
try {
|
||||
files.push(extractFile(bytes, detectedFile.fileDetails, detectedFile.offset));
|
||||
} catch (err) {}
|
||||
} catch (err) {
|
||||
if (err.message.indexOf("No extraction algorithm available") < 0)
|
||||
throw err;
|
||||
}
|
||||
});
|
||||
|
||||
return files;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue