You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
------------------ 原始邮件 ------------------
发件人: Chrislearn Young ***@***.***>
发送时间: 2024年2月8日 15:06
收件人: salvo-rs/salvo ***@***.***>
抄送: luyikk ***@***.***>, Author ***@***.***>
主题: Re: [salvo-rs/salvo] 防御慢速HTTP攻击 (Issue #661)
fuse 分支,尚未测试,你一般用什么工具测试这种慢网速或者 tls 验证问题?
h3 应该还好,一般连接重用,好像一个客户端一般建立一个连接。
另外安全防护是一个复杂的问题,框架层面很难完全解决,甚至于可以说本身就没法解决,只能说加大点攻击难度而已。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
参考问题连接:
hyperium/hyper#2457
h2 当tcp连接上来后,需要对tls验证进行timeout检测,一般是5秒,如果大于5秒没用完成tls验证,需要对连接杀死,并释放资源,tls验证过后,需要对http header 读取进行 timeout 检测,一般5秒,如果超时需要对连接杀死,并释放资源, http header过后需要对body 进行timeout检测,一般5秒,如果超时需要对连接杀死,并释放资源。 以上5秒需要可配置
h1.1 没用tls这一步
h3 目前不清楚,但对应的超时检测 释放相关的资源 应该也是存在的
The text was updated successfully, but these errors were encountered: