mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
9052ef43dc
Signed-off-by: Matteo Collina <hello@matteocollina.com> PR-URL: https://github.com/nodejs-private/node-private/pull/540 Reviewed-By: Robert Nagy <ronagy@icloud.com> Ref: https://hackerone.com/reports/2284065 CVE-ID: CVE-2024-22025
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const zlib = require('zlib');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const file = fixtures.readSync('person.jpg');
|
|
const chunkSize = 12 * 1024;
|
|
const opts = { level: 9, strategy: zlib.constants.Z_DEFAULT_STRATEGY };
|
|
const deflater = zlib.createDeflate(opts);
|
|
|
|
const chunk1 = file.slice(0, chunkSize);
|
|
const chunk2 = file.slice(chunkSize);
|
|
const blkhdr = Buffer.from([0x00, 0x5a, 0x82, 0xa5, 0x7d]);
|
|
const blkftr = Buffer.from('010000ffff7dac3072', 'hex');
|
|
const expected = Buffer.concat([blkhdr, chunk2, blkftr]);
|
|
const bufs = [];
|
|
|
|
function read() {
|
|
let buf;
|
|
while ((buf = deflater.read()) !== null) {
|
|
bufs.push(buf);
|
|
}
|
|
}
|
|
|
|
deflater.write(chunk1, function() {
|
|
deflater.params(0, zlib.constants.Z_DEFAULT_STRATEGY, function() {
|
|
while (deflater.read());
|
|
|
|
deflater.on('readable', read);
|
|
|
|
deflater.end(chunk2);
|
|
});
|
|
while (deflater.read());
|
|
});
|
|
|
|
process.once('exit', function() {
|
|
const actual = Buffer.concat(bufs);
|
|
assert.deepStrictEqual(actual, expected);
|
|
});
|