mirror of
https://github.com/gchq/CyberChef
synced 2025-12-16 00:04:20 +00:00
Change Tar block padding to 2 blocks
This commit is contained in:
@@ -408,7 +408,7 @@ var Compress = {
|
||||
};
|
||||
|
||||
Tarball.prototype.writeEndBlocks = function() {
|
||||
var filler = new Array(512 * 1);
|
||||
var filler = new Array(512 * 2);
|
||||
filler.fill(0);
|
||||
this.writeBytes(filler);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user