<small id='0KMDv'></small><noframes id='0KMDv'>

      • <bdo id='0KMDv'></bdo><ul id='0KMDv'></ul>

      1. <legend id='0KMDv'><style id='0KMDv'><dir id='0KMDv'><q id='0KMDv'></q></dir></style></legend>

      2. <tfoot id='0KMDv'></tfoot>
        <i id='0KMDv'><tr id='0KMDv'><dt id='0KMDv'><q id='0KMDv'><span id='0KMDv'><b id='0KMDv'><form id='0KMDv'><ins id='0KMDv'></ins><ul id='0KMDv'></ul><sub id='0KMDv'></sub></form><legend id='0KMDv'></legend><bdo id='0KMDv'><pre id='0KMDv'><center id='0KMDv'></center></pre></bdo></b><th id='0KMDv'></th></span></q></dt></tr></i><div id='0KMDv'><tfoot id='0KMDv'></tfoot><dl id='0KMDv'><fieldset id='0KMDv'></fieldset></dl></div>

        PHP - CSRF - 如何让它在所有选项卡中工作?

        PHP - CSRF - How to make it works in all tabs?(PHP - CSRF - 如何让它在所有选项卡中工作?)

          <tfoot id='qokaX'></tfoot>
            <tbody id='qokaX'></tbody>
        1. <small id='qokaX'></small><noframes id='qokaX'>

          <legend id='qokaX'><style id='qokaX'><dir id='qokaX'><q id='qokaX'></q></dir></style></legend>
            • <bdo id='qokaX'></bdo><ul id='qokaX'></ul>
                • <i id='qokaX'><tr id='qokaX'><dt id='qokaX'><q id='qokaX'><span id='qokaX'><b id='qokaX'><form id='qokaX'><ins id='qokaX'></ins><ul id='qokaX'></ul><sub id='qokaX'></sub></form><legend id='qokaX'></legend><bdo id='qokaX'><pre id='qokaX'><center id='qokaX'></center></pre></bdo></b><th id='qokaX'></th></span></q></dt></tr></i><div id='qokaX'><tfoot id='qokaX'></tfoot><dl id='qokaX'><fieldset id='qokaX'></fieldset></dl></div>

                  本文介绍了PHP - CSRF - 如何让它在所有选项卡中工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  最近几天我已经阅读了有关如何防止 CSRF 攻击的信息.我将在每次页面加载中更新令牌,将令牌保存在会话中并在提交表单时进行检查.

                  I have read about how to prevent CSRF-attacks in the last days. I am going to update the token in every pageload, save the token in the session and make a check when submitting a form.

                  但是如果用户有,假设我的网站打开了 3 个标签,而我只是将最后一个令牌存储在会话中?这将用另一个令牌覆盖该令牌,并且某些后操作将失败.

                  But what if the user has, lets say 3 tabs open with my website, and I just store the last token in the session? This will overwrite the token with another token, and some post-action is going to fail.

                  我是否需要将所有令牌存储在会话中,还是有更好的解决方案来使其正常工作?

                  Do I need to store all tokens in the session, or is there a better solution to get this working?

                  推荐答案

                  是的,使用存储令牌方法,您必须保留所有生成的令牌,以防它们在任何时候返回.单个存储令牌不仅对多个浏览器选项卡/窗口失败,而且对后退/前进导航也失败.您通常希望通过使旧令牌过期(按年龄和/或此后发行的令牌数量)来管理潜在的存储爆炸.

                  Yes, with the stored-token approach you'd have to keep all generated tokens just in case they came back in at any point. A single stored-token fails not just for multiple browser tabs/windows but also for back/forward navigation. You generally want to manage the potential storage explosion by expiring old tokens (by age and/or number of tokens issued since).

                  另一种完全避免令牌存储的方法是发出使用服务器端密钥生成的签名令牌.然后,当您取回令牌时,您可以检查签名,如果匹配,您就知道您已签名.例如:

                  Another approach that avoids token storage altogether is to issue a signed token generated using a server-side secret. Then when you get the token back you can check the signature and if it matches you know you signed it. For example:

                  // Only the server knows this string. Make it up randomly and keep it in deployment-specific
                  // settings, in an include file safely outside the webroot
                  //
                  $secret= 'qw9pDr$wEyq%^ynrUi2cNi3';
                  
                  ...
                  
                  // Issue a signed token
                  //
                  $token= dechex(mt_rand());
                  $hash= hash_hmac('sha1', $token, $secret);
                  $signed= $token.'-'.$hash;
                  
                  <input type="hidden" name="formkey" value="<?php echo htmlspecialchars($signed); ?>">
                  
                  ...
                  
                  // Check a token was signed by us, on the way back in
                  //
                  $isok= FALSE;
                  $parts= explode('-', $_POST['formkey']);
                  if (count($parts)===2) {
                      list($token, $hash)= $parts;
                      if ($hash===hash_hmac('sha1', $token, $secret))
                          $isok= TRUE;
                  }
                  

                  有了这个,如果你得到一个带有匹配签名的令牌,你就知道你生成了它.这本身并没有多大帮助,但是您可以在令牌中添加除随机性之外的额外内容,例如用户 ID:

                  With this, if you get a token with a matching signature you know you generated it. That's not much help in itself, but then you can put extra things in the token other than the randomness, for example user id:

                  $token= dechex($user->id).'.'.dechex(mt_rand())
                  
                  ...
                  
                      if ($hash===hash_hmac('sha1', $token, $secret)) {
                          $userid= hexdec(explode('.', $token)[0]);
                          if ($userid===$user->id)
                              $isok= TRUE
                  

                  现在每个表单提交都必须由拾取表单的同一用户授权,这几乎击败了 CSRF.

                  Now each form submission has to be authorised by the same user who picked up the form, which pretty much defeats CSRF.

                  放入令牌的另一件事是到期时间,这样一来,瞬间的客户端妥协或中间人攻击就不会泄露一个对该用户永远有效的令牌,并且值会随着时间的变化而改变密码重置,因此更改密码会使现有令牌无效.

                  Another thing it's a good idea to put in a token is an expiry time, so that a momentary client compromise or MitM attack doesn't leak a token that'll work for that user forever, and a value that is changes on password resets, so that changing password invalidates existing tokens.

                  这篇关于PHP - CSRF - 如何让它在所有选项卡中工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  PHP Upload File Validation(PHP 上传文件验证)
                  PHP Error - Uploading a file(PHP 错误 - 上传文件)
                  How can I write tests for file upload in PHP?(如何在 PHP 中编写文件上传测试?)
                  php resizing image on upload rotates the image when i don#39;t want it to(php在上传时调整图像大小会在我不想要它时旋转图像)
                  How to send additional data using PLupload?(如何使用 PLupload 发送附加数据?)
                  change button text in js/ajax after mp4 =gt;mp3 conversion in php(在 php 中的 mp4 =gt;mp3 转换后更改 js/ajax 中的按钮文本)

                  1. <tfoot id='flcXE'></tfoot>

                  2. <i id='flcXE'><tr id='flcXE'><dt id='flcXE'><q id='flcXE'><span id='flcXE'><b id='flcXE'><form id='flcXE'><ins id='flcXE'></ins><ul id='flcXE'></ul><sub id='flcXE'></sub></form><legend id='flcXE'></legend><bdo id='flcXE'><pre id='flcXE'><center id='flcXE'></center></pre></bdo></b><th id='flcXE'></th></span></q></dt></tr></i><div id='flcXE'><tfoot id='flcXE'></tfoot><dl id='flcXE'><fieldset id='flcXE'></fieldset></dl></div>
                  3. <small id='flcXE'></small><noframes id='flcXE'>

                    • <bdo id='flcXE'></bdo><ul id='flcXE'></ul>
                          <legend id='flcXE'><style id='flcXE'><dir id='flcXE'><q id='flcXE'></q></dir></style></legend>

                            <tbody id='flcXE'></tbody>