解決啟用Csrf後出現400錯誤

來源:互聯網
上載者:User
如何解決啟用Csrf後出現400錯誤?本文主要介紹了啟用Csrf後POST資料時出現的400錯誤的相關資料。希望對大家有所協助。

最近一直出現這樣的錯誤,一直在尋找原因,偶然看到一篇解決的文章,分享給大家看看。

第一種解決辦法是關閉Csrf

public function init(){  $this->enableCsrfValidation = false;}

第二種解決辦法是在form表單中加入隱藏欄位

<input name="_csrf" type="hidden" id="_csrf" value="<?= Yii::$app->request->csrfToken ?>">

第三種解決辦法是在AJAX中加入_csrf欄位

var csrfToken = $('meta[name="csrf-token"]').attr("content");$.ajax({ type: 'POST', url: url, data: {_csrf:csrfToken}, success: success, dataType: dataType});

Yii這個匹配的過程和Yii::$app->request->csrfToken 這個值儲存位置說明:

儲存位置

  protected function createCsrfCookie($token)  {    $options = $this->csrfCookie;    $options['name'] = $this->csrfParam;    $options['value'] = $token;    return new Cookie($options);  }

校正方法

  public function validateCsrfToken($token = null)  {    $method = $this->getMethod();    // only validate CSRF token on non-"safe" methods http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.1    if (!$this->enableCsrfValidation || in_array($method, ['GET', 'HEAD', 'OPTIONS'], true)) {      return true;    }    $trueToken = $this->loadCsrfToken();    if ($token !== null) {      return $this->validateCsrfTokenInternal($token, $trueToken);    } else {      return $this->validateCsrfTokenInternal($this->getBodyParam($this->csrfParam), $trueToken)        || $this->validateCsrfTokenInternal($this->getCsrfTokenFromHeader(), $trueToken);    }  }

相關推薦:

有關對同源策略和csrf安全性原則的知識點講解

XSS及CSRF的詳細介紹

Yii2.0防禦csrf攻擊方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.