禁用/配置每个控制器的 HoptoadNotifier

发布于 2024-09-06 10:16:28 字数 555 浏览 5 评论 0原文

如何禁用或配置每个控制器的 HoptoadNotifier?背景是我将通知程序配置为报告“不允许方法”异常,例如,当使用 GET 而不是 POST 访问操作时会引发此异常。

但是我有一个自动完成控制器,机器人通过向我的控制器发送 GET 请求而不是 POST (带有各种奇怪的参数)来扫描它(可能是为了发现漏洞)。所以我想仅针对此异常、此操作或此控制器禁用通知程序。

已解决:感谢@Tanel,我做了以下似乎有效的操作:

def rescue_action_in_public exception
  if exception.is_a? ActionController::MethodNotAllowed
    rescue_action_in_public_without_hoptoad exception
  else
    super exception
  end
end

How could I disable or configure the HoptoadNotifier per controller? Background is that I configured the notifier to report "Method not allowed" exception, eg this is raised when an action is accessed with GET instead of POST.

But I have an autocomplete controller which is scanned by bots (probably to find exploits) by sending GET requests to my controller instead of POST (with all sorts of strange parameters). So I want to disable the notifier for just this exception, this action, or this controller.

Solved: Thanks to @Tanel I did the following which seems to work:

def rescue_action_in_public exception
  if exception.is_a? ActionController::MethodNotAllowed
    rescue_action_in_public_without_hoptoad exception
  else
    super exception
  end
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南城旧梦 2024-09-13 10:16:28

也许覆盖特定控制器中的 rescue_action_in_public

这就是 Hoptoad 用来捕获异常的方法。

Perhaps overriding the rescue_action_in_public in the specific controller?

That's the method Hoptoad uses to catch its exceptions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文