summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-03-08 08:07:43 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-03-08 08:07:43 +0000
commitc4f5d43aff9ff52cf9b0062ac02d22aa49f8d9fa (patch)
tree1ae7b15c38493eb9134af8a6e7dd11270d6087c4 /roundcubemail/program
parent2235956b511108826f9ad30bd3645e2f3eb0e57c (diff)
Use PHPs session_regenerte_id() instead of using (unreliable) mt_rand() function (#1486281)
git-svn-id: https://svn.roundcube.net/trunk@4598 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/include/rcube_session.php16
1 files changed, 2 insertions, 14 deletions
diff --git a/roundcubemail/program/include/rcube_session.php b/roundcubemail/program/include/rcube_session.php
index 2bd663c83..0fc444256 100644
--- a/roundcubemail/program/include/rcube_session.php
+++ b/roundcubemail/program/include/rcube_session.php
@@ -212,20 +212,8 @@ class rcube_session
$this->destroy(session_id());
$this->vars = false;
- $randval = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
-
- for ($random = '', $i=1; $i <= 32; $i++) {
- $random .= substr($randval, mt_rand(0,(strlen($randval) - 1)), 1);
- }
-
- // use md5 value for id
- $this->key = md5($random);
- session_id($this->key);
-
- $cookie = session_get_cookie_params();
- $lifetime = $cookie['lifetime'] ? time() + $cookie['lifetime'] : 0;
-
- rcmail::setcookie(session_name(), $this->key, $lifetime);
+ session_regenerate_id(false);
+ $this->key = session_id();
return true;
}