php 通过会话或IP阻止泛洪请求
我想通过会话或 IP 阻止泛洪请求。
这是我的要求。 如果任何用户在 1 小时内发送 1000 个请求,我想阻止该请求。我不知道这是通过会话还是IP完成的。请帮助我做到这一点。如果有,请提供脚本。谢谢。
I want to block flooding requests by session or IP.
This is my requirement. If any user send 1000 requests within 1 hour, I want to block that request. I don't know it's done by session or IP. Please help me to do this. Please provide script if you have. thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为应该是两者的结合。
使用会话,因为他可能会改变IP。
使用IP,因为他可能会阻止会话cookie。
I think it should be a combination of both of them.
use session because he might change the IP.
use IP because he might block session cookies.