Codeigniter CSRF 问题

发布于 2024-12-06 09:03:32 字数 98 浏览 1 评论 0原文

我只是想知道是否有任何选项可以在特定的控制器/方法中关闭 CSRF。我有另一个网站可以 ping 我的网站,但由于 CSRF 被阻止。

有什么办法可以解决这个问题吗?

I'm just wondering of there is any option where i can turn off CSRF in a specific controller/method. I've got another site that pings my site, but getting blocked because of the CSRF.

Is there any way i can get around this?

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

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

发布评论

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

评论(1

暮凉 2024-12-13 09:03:33

创建一个 pre_system 钩子,然后将以下代码放入钩子控制器中:

if(stripos($_SERVER["REQUEST_URI"],'/controller/function') !== FALSE)
{
    $CFG =& load_class('Config', 'core');
    $CFG->set_item('csrf_protection', FALSE);
}

参考:http ://codeigniter.com/forums/viewreply/869900/

Create a pre_system hook then put the following code inside your hook controller:

if(stripos($_SERVER["REQUEST_URI"],'/controller/function') !== FALSE)
{
    $CFG =& load_class('Config', 'core');
    $CFG->set_item('csrf_protection', FALSE);
}

Reference: http://codeigniter.com/forums/viewreply/869900/

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