ASP.Net MVC - 使用外部 URL 进行身份验证
我们的组织有一个表单身份验证的中央解决方案。 我正在尝试实现一个使用此外部 URL 的 ASP.Net MVC 应用程序 - 它一直工作到 RC! 已发布...
发生的情况,
这就是在 ActionAttribute 扩展中
我检查 s session var 如果没有找到 检查请求数据卡盘 如果找到,设置会话变量 如果未找到 - 重定向到外部 URL 如果找到 继续。
问题是,在我更新到 RC1 之前,这一直有效。 从那时起,如此多的请求被发送到外部 URL,以至于它检测到 DoS 攻击并将我拒之门外!
我删除了重定向代码,并将其替换为 Forms Auth 的 web.config 更改 - 并且发生了同样的事情......
Our organization has a central solution for forms authentication. I am trying to implement an ASP.Net MVC app that uses this external URL - and it worked till RC! was released...
Here's what's happening
In an ActionAttribute Extension
I check for s session var
if not found
check for a request data chuck
if found, set the session var
if not found - redirect to external URL
if found
continue.
The trouble is that till I updated to RC1, this worked. Since then, so many requests are being sent to the external URL that it detects a DoS attack and shuts me out!
I removed the redirection code and replaced it with the web.config changes for Forms Auth - and the same thing happened...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我通过创建请求 IP 的静态字典并删除来自同一 IP 的重复请求来解决此问题。 这不是一个很好的解决方案 - 所以如果有人找到更好的解决方案 - 请告诉我。
I resolved this issue by creating a static dictionary of requesting IPs, and dropping duplicate requests from the same IP. Not a very nice solution - so if anyone figures out a better solution - let me know.
为什么不使用 MicrosoftGeneva 而不是尝试推出自己的身份验证提供程序?
Why not use Microsoft Geneva instead of attempting to roll your own authentication provider?
代码:
CODE: