黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

CakePHP 安全

cakephp 安全

 

安全性是構(gòu)建 web 應(yīng)用程序時(shí)的另一個(gè)重要特性。它向網(wǎng)站用戶保證,他們的數(shù)據(jù)是安全的。 cakephp 提供了一些工具來保護(hù)您的應(yīng)用程序。

 

加解密

cakephp 中的安全庫提供了加密和解密數(shù)據(jù)的方法。以下是兩種方法,用途相同。

static cake\utility\security::encrypt($text, $key, $hmacsalt = null)
static cake\utility\security::decrypt($cipher, $key, $hmacsalt = null)

encrypt 方法以 text 和 key 為參數(shù)對(duì)數(shù)據(jù)進(jìn)行加密,返回值為帶 hmac 校驗(yàn)和的加密值。

要散列數(shù)據(jù),使用 hash() 方法。以下是 hash() 方法的語法。

static cake\utility\security::hash($string, $type = null, $salt = false)

 

csrf

csrf 代表 跨站請(qǐng)求偽造。通過啟用 csrf 組件,您可以抵御攻擊。 csrf 是 web 應(yīng)用程序中的常見漏洞。

它允許攻擊者捕獲并重放先前的請(qǐng)求,有時(shí)還使用其他域上的圖像標(biāo)簽或資源提交數(shù)據(jù)請(qǐng)求。 csrf 可以通過簡單地將 csrfcomponent 添加到你的組件數(shù)組來啟用,如下所示:

public function initialize(): void {
   parent::initialize();
   $this->loadcomponent('csrf');
}

csrfcomponent 與 formhelper 無縫集成。每次使用 formhelper 創(chuàng)建表單時(shí),它都會(huì)插入一個(gè)包含 csrf 令牌的隱藏字段。

雖然不推薦這樣做,但您可能希望在某些請(qǐng)求上禁用 csrfcomponent。您可以在 beforefilter() 方法期間使用控制器的事件調(diào)度器來實(shí)現(xiàn)。

public function beforefilter(event $event) {
   $this->eventmanager()->off($this->csrf);
}

 

安全組件

安全組件對(duì)您的應(yīng)用程序應(yīng)用更嚴(yán)格的安全性。它為各種任務(wù)提供方法,例如:

  • 限制您的應(yīng)用程序接受哪些 http 方法-在執(zhí)行副作用之前,您應(yīng)該始終驗(yàn)證正在使用的 http 方法。您應(yīng)該檢查 http 方法或使用 cake\network\request::allowmethod() 以確保使用正確的 http 方法。
  • 表單篡改保護(hù)-默認(rèn)情況下,securitycomponent 防止用戶以特定方式篡改表單。 securitycomponent 將防止以下事情-
  • 無法將未知字段添加到表單中。
  • 無法從表單中刪除字段。
  • 無法修改隱藏輸入中的值。
  • 要求使用 ssl-需要 ssl 保護(hù)的所有操作
  • 限制跨控制器通信-我們可以限制哪個(gè)控制器可以向該控制器發(fā)送請(qǐng)求。我們還可以限制哪些操作可以向該控制器的操作發(fā)送請(qǐng)求。
  •  

    示例

    config/routes.php 文件中進(jìn)行更改,如以下程序所示。

    config/routes.php

    use cake\http\middleware\csrfprotectionmiddleware;
    use cake\routing\route\dashedroute;
    use cake\routing\routebuilder;
    $routes--->setrouteclass(dashedroute::class);
    $routes->scope('/', function (routebuilder $builder) {
       $builder->registermiddleware('csrf', new csrfprotectionmiddleware([
          'httponly' => true,
       ]));
       $builder->applymiddleware('csrf');
       //$builder->connect('/pages',
          ['controller'=>'pages','action'=>'display', 'home']);
       $builder->connect('login',['controller'=>'logins','action'=>'index']);
       $builder->fallbacks();
    });

    src/controller/loginscontroller.php 中創(chuàng)建一個(gè) loginscontroller.php 文件。 將以下代碼復(fù)制到控制器文件中。

    src/controller/loginscontroller.php

       namespace app\controller;
       use app\controller\appcontroller;
       class loginscontroller extends appcontroller {
          public function initialize() : void {
             parent::initialize();
             $this--->loadcomponent('security');
          }
             public function index(){
          }
       }
    ?>

    src/template 創(chuàng)建一個(gè) logins 目錄,然后在該目錄下創(chuàng)建一個(gè)名為index.php 的 view 文件。將以下代碼復(fù)制到該文件中。

    src/template/logins/index.php

       echo $this--->form->create(null,array('url'=>'/login'));
       echo $this->form->control('username');
       echo $this->form->control('password');
       echo $this->form->button('submit');
       echo $this->form->end();
    ?>

    通過訪問以下 url 執(zhí)行上述示例-http://localhost/cakephp4/login

     

    輸出

    執(zhí)行后,您將收到以下輸出。

    下一節(jié):cakephp 驗(yàn)證

    cakephp 教程

    相關(guān)文章