gpt4 book ai didi

c# - 在 Web.Config 中限制 URL 参数长度

转载 作者:太空宇宙 更新时间:2023-11-03 22:21:21 26 4
gpt4 key购买 nike

是否可以在 web.config 中添加某种限制来限制 URL 参数长度?我想尽早防止人们提交太大的 URL 参数,以便在有人试图用大的无效 URL 参数“攻击”服务器时,服务器不会受到不必要的负担。

最佳答案

请参阅以下链接:

http://learn.iis.net/page.aspx/143/use-request-filtering/

这是 IIS 7 配置的示例:

<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits
maxAllowedContentLength="30000000"
maxUrl="260"
maxQueryString="25"/>
</requestFiltering>
</security>
</system.webServer>

关于c# - 在 Web.Config 中限制 URL 参数长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2977777/

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