Improved continueUntil, added consumeWhile and made the EVTX extractor more complete

This commit is contained in:
n1073645 2019-11-11 16:08:03 +00:00
parent d240d65c5f
commit 8e2345cf9e
2 changed files with 2 additions and 2 deletions

View file

@ -3349,7 +3349,7 @@ export function extractEVTX(bytes, offset) {
// Loop through ELFCHNKs.
if (stream.getBytes(7).join("") !== [0x45, 0x6c, 0x66, 0x43, 0x68, 0x6e, 0x6b].join(""))
break;
break;
stream.moveForwardsBy(0xfff9);
}
stream.consumeWhile(0x00);