Skip to content

doc: correct unsafe URL example in http docs

The previous documentation example for converting request.url to an URL object was unsafe, as it could allow a server crash through malformed URL inputs and potentially enable host header attacks. This commit revises the example to use string concatenation, mitigating both the crash and security risks by ensuring the host part of the URL remains controlled and predictable.

Fixes: https://github.com/nodejs/node/issues/52494

Merge request reports

Loading