Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cookies: improve validateCookieValue #2883

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions benchmarks/cookies/validate-cookie-value.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { bench, group, run } from 'mitata'
import { validateCookieValue } from '../../lib/web/cookies/util.js'

const valid = 'Cat'
const wrappedValid = `"${valid}"`

group('validateCookieValue', () => {
bench(`valid: ${valid}`, () => {
return validateCookieValue(valid)
})
bench(`valid: ${wrappedValid}`, () => {
return validateCookieValue(wrappedValid)
})
})

await run()
29 changes: 21 additions & 8 deletions lib/web/cookies/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,30 @@ function validateCookieName (name) {
* @param {string} value
*/
function validateCookieValue (value) {
for (const char of value) {
const code = char.charCodeAt(0)
let len = value.length
let i = 0

// if the value is wrapped in DQUOTE
if (value[0] === '"') {
if (len === 1 || value[len - 1] !== '"') {
throw new Error('Invalid cookie value')
}
--len
++i
}

while (i < len) {
const code = value.charCodeAt(i++)

if (
code < 0x21 || // exclude CTLs (0-31)
code === 0x22 ||
code === 0x2C ||
code === 0x3B ||
code === 0x5C ||
code > 0x7E // non-ascii
code > 0x7E || // non-ascii and DEL (127)
code === 0x22 || // "
code === 0x2C || // ,
code === 0x3B || // ;
code === 0x5C // \
) {
throw new Error('Invalid header value')
throw new Error('Invalid cookie value')
}
}
}
Expand Down Expand Up @@ -286,6 +298,7 @@ function getHeadersList (headers) {
module.exports = {
isCTLExcludingHtab,
validateCookiePath,
validateCookieValue,
toIMFDate,
stringify,
getHeadersList
Expand Down
4 changes: 2 additions & 2 deletions test/cookie/cookies.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ test('Cookie Value Validation', () => {
}
)
},
new Error('Invalid header value'),
new Error('Invalid cookie value'),
"RFC2616 cookie 'Space'"
)
})
Expand All @@ -128,7 +128,7 @@ test('Cookie Value Validation', () => {
value: 'United Kingdom'
})
},
new Error('Invalid header value'),
new Error('Invalid cookie value'),
"RFC2616 cookie 'location' cannot contain character ' '"
)
})
Expand Down
78 changes: 78 additions & 0 deletions test/cookie/validate-cookie-value.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
'use strict'

const { test, describe } = require('node:test')
const { throws, strictEqual } = require('node:assert')

const {
validateCookieValue
} = require('../../lib/web/cookies/util')

describe('validateCookieValue', () => {
test('should throw for CTLs', () => {
throws(() => validateCookieValue('\x00'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x01'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x02'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x03'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x04'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x05'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x06'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x07'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x08'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x09'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x0A'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x0B'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x0C'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x0D'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x0E'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x0F'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x10'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x11'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x12'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x13'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x14'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x15'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x16'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x17'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x18'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x19'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x1A'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x1B'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x1C'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x1D'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x1E'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x1F'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('\x7F'), new Error('Invalid cookie value'))
})

test('should throw for ; character', () => {
throws(() => validateCookieValue(';'), new Error('Invalid cookie value'))
})

test('should throw for " character', () => {
throws(() => validateCookieValue('"'), new Error('Invalid cookie value'))
})

test('should throw for " character', () => {
Uzlopak marked this conversation as resolved.
Show resolved Hide resolved
throws(() => validateCookieValue(','), new Error('Invalid cookie value'))
})

test('should throw for \\ character', () => {
throws(() => validateCookieValue('\\'), new Error('Invalid cookie value'))
})

test('should pass for a printable character', t => {
strictEqual(validateCookieValue('A'), undefined)
strictEqual(validateCookieValue('Z'), undefined)
strictEqual(validateCookieValue('a'), undefined)
strictEqual(validateCookieValue('z'), undefined)
strictEqual(validateCookieValue('!'), undefined)
strictEqual(validateCookieValue('='), undefined)
})

test('should handle strings wrapped in DQUOTE', t => {
strictEqual(validateCookieValue('""'), undefined)
strictEqual(validateCookieValue('"helloworld"'), undefined)
throws(() => validateCookieValue('"'), new Error('Invalid cookie value'))
throws(() => validateCookieValue('"""'), new Error('Invalid cookie value'))
})
})