Skip to content

Commit

Permalink
feat(std/http): Validate cookie path value (denoland#8457)
Browse files Browse the repository at this point in the history
  • Loading branch information
getspooky committed Nov 22, 2020
1 parent 14877f7 commit 2c00f6c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
22 changes: 22 additions & 0 deletions std/http/cookie.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ function toString(cookie: Cookie): string {
out.push(`SameSite=${cookie.sameSite}`);
}
if (cookie.path) {
validatePath(cookie.path);
out.push(`Path=${cookie.path}`);
}
if (cookie.expires) {
Expand All @@ -92,6 +93,27 @@ function validateCookieName(name: string | undefined | null): void {
}
}

/**
* Validate Path Value.
* @see https://tools.ietf.org/html/rfc6265#section-4.1.2.4
* @param path Path value.
*/
function validatePath(path: string | null): void {
if (path == null) {
return;
}
for (let i = 0; i < path.length; i++) {
const c = path.charAt(i);
if (
c < String.fromCharCode(0x20) || c > String.fromCharCode(0x7E) || c == ";"
) {
throw new Error(
path + ": Invalid cookie path char '" + c + "'",
);
}
}
}

/**
* Parse the cookies of the Server Request
* @param req An object which has a `headers` property
Expand Down
23 changes: 23 additions & 0 deletions std/http/cookie_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,29 @@ Deno.test({
},
});

Deno.test({
name: "Cookie Path Validation",
fn(): void {
const res: Response = {};
const path = "/;domain=sub.domain.com";
res.headers = new Headers();
assertThrows(
(): void => {
setCookie(res, {
name: "Space",
value: "Cat",
httpOnly: true,
secure: true,
path,
maxAge: 3,
});
},
Error,
path + ": Invalid cookie path char ';'",
);
},
});

Deno.test({
name: "Cookie Delete",
fn(): void {
Expand Down

0 comments on commit 2c00f6c

Please sign in to comment.