]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Use PHP7 random_bytes to generate RSS Token
authorJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 21 Jan 2016 15:35:41 +0000 (16:35 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 21 Jan 2016 15:35:41 +0000 (16:35 +0100)
random_bytes is a PHP 7 function wich has been ported to PHP 5 using paragonie/random_compat

composer.json
src/Wallabag/CoreBundle/Tools/Utils.php

index 78b32307acb284d58132b80420f782aac9468300..d84e1f8b8f1b04c6b7c25e870be4ca0f69573596 100644 (file)
@@ -62,7 +62,8 @@
         "wallabag/php-mobi": "~1.0.0",
         "kphoen/rulerz-bundle": "~0.10",
         "guzzlehttp/guzzle": "^5.2.0",
-        "doctrine/doctrine-migrations-bundle": "^1.0"
+        "doctrine/doctrine-migrations-bundle": "^1.0",
+        "paragonie/random_compat": "~1.0"
     },
     "require-dev": {
         "doctrine/doctrine-fixtures-bundle": "~2.2",
index a16baca97e0a09e27e7c35e7ecafdfdf0131416e..71cbc490dd48119a218b1b829f6be4be9c08da57 100644 (file)
@@ -7,20 +7,13 @@ class Utils
     /**
      * Generate a token used for RSS.
      *
+     * @param integer $length Length of the token
+     *
      * @return string
      */
-    public static function generateToken()
+    public static function generateToken($length = 15)
     {
-        if (ini_get('open_basedir') === '') {
-            if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
-                // alternative to /dev/urandom for Windows
-                $token = substr(base64_encode(uniqid(mt_rand(), true)), 0, 20);
-            } else {
-                $token = substr(base64_encode(file_get_contents('/dev/urandom', false, null, 0, 20)), 0, 15);
-            }
-        } else {
-            $token = substr(base64_encode(uniqid(mt_rand(), true)), 0, 20);
-        }
+        $token = substr(base64_encode(random_bytes($length)), 0, $length);
 
         // remove character which can broken the url
         return str_replace(array('+', '/'), '', $token);