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

Экранируем HTTP-заголовки в ответе #126

Merged
merged 1 commit into from
Nov 12, 2015
Merged

Экранируем HTTP-заголовки в ответе #126

merged 1 commit into from
Nov 12, 2015

Conversation

alexeyten
Copy link
Contributor

Для обхода nodejs/node#1693 во всех HTTP-заголовках ответа
делаем encodeURI для всех не-ascii символов

Для обхода nodejs/node#1693 во всех HTTP-заголовках ответа
делаем encodeURI для всех не-ascii символов
.replace(/[\uD800-\uDFFF]/g, '') // невалидные половинки суррогатных пар
.replace(/[\u0000-\u001F\u007F-\uFFFF]+/g, encodeURI); // всё остальное непечатное
}

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А ты уверен, что тут надо не encodeURIComponent?
И может проще/дешевле весь хедер целиком энкодить, чем такими регэкспами фигачить?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Для не-ascii разницы между encodeURI и encodeURIComponent нет.

Не проще. Например, заголовок Location: /ф?n=m%26m&t=ф сломается, т.к. % заэнкодится ещё раз и получится /%D1%84?n=m%2526m&t=%D1%84 вместо '/%D1%84?n=m%26m&t=%D1%84

pasaran added a commit that referenced this pull request Nov 12, 2015
Экранируем HTTP-заголовки в ответе
@pasaran pasaran merged commit 49fde7e into pasaran:master Nov 12, 2015
@alexeyten alexeyten deleted the encode-headers branch July 6, 2016 06:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants