mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 07:46:16 -04:00
Made TAR extractor and MACHO signature more robust
This commit is contained in:
parent
e1cb62848c
commit
0a7b78b7ee
1 changed files with 1 additions and 1 deletions
|
@ -2858,7 +2858,7 @@ export function extractTAR(bytes, offset) {
|
|||
if (stream.getBytes(5).join("") !== [0x75, 0x73, 0x74, 0x61, 0x72].join("")) {
|
||||
|
||||
// This is needed since if it were not here it relies on there being at least 0x106 padding of 0s at the end of the TAR
|
||||
stream.moveBackwardsBy(0x101);
|
||||
stream.moveBackwardsBy(0x106);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue