add a comment

This commit is contained in:
bethanyj28 2024-02-23 15:33:24 -05:00
parent 7fa864a4f4
commit 6cf4fbcef8

View File

@ -124,7 +124,7 @@ const mockGetArtifactFailure = jest.fn(() => {
const mockGetArtifactMalicious = jest.fn(() => { const mockGetArtifactMalicious = jest.fn(() => {
const message = new http.IncomingMessage(new net.Socket()) const message = new http.IncomingMessage(new net.Socket())
message.statusCode = 200 message.statusCode = 200
message.push(fs.readFileSync(path.join(__dirname, 'fixtures', 'evil.zip'))) message.push(fs.readFileSync(path.join(__dirname, 'fixtures', 'evil.zip'))) // evil.zip contains files that are formatted x/../../etc/hosts
message.push(null) message.push(null)
return { return {
message message