gpt4 book ai didi

nginx - 避免 CR :LF characters in NGINX

转载 作者:行者123 更新时间:2023-12-01 08:54:14 26 4
gpt4 key购买 nike

我希望将 NGINX 中所有带有 CR:LF 字符的 url 发送到错误页面。我试图找到如何做到这一点,但没有看到任何 nginx 支持它。我该怎么做?

最佳答案

CR 和 LF 字符将在 $request_uri 中编码为 %0D%0A

您可以通过在 server block 顶部附近放置一个 if block 来检测它们:

server {
...
if ( $request_uri ~* "%0A|%0D" ) { return 403; }

参见 this caution关于 if 的使用。

关于nginx - 避免 CR :LF characters in NGINX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44178354/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com