From 0b681a79e96ececa84ec51a9777ff73efcbc83a5 Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Sat, 16 Nov 2013 10:33:40 +0100 Subject: [PATCH] =?UTF-8?q?Am=C3=A9liore=20g=C3=A9n=C3=A9ration=20du=20sel?= =?UTF-8?q?=20(installation)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Utilise une méthode moins prédictible Voir e9168f6cd21d7e95aff183f2a503911a1208a0af --- public/install.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/install.php b/public/install.php index dba088148..fa4d59f20 100644 --- a/public/install.php +++ b/public/install.php @@ -142,8 +142,9 @@ function saveStep2 () { return false; } - $first_sel = small_hash (time ()); - $_SESSION['sel'] = small_hash (time () . $first_sel) . $first_sel; + $_SESSION['sel'] = md5 ( + uniqid (mt_rand (), true).implode ('', stat (__FILE__)) + ); $_SESSION['base_url'] = addslashes ($_POST['base_url']); $_SESSION['title'] = addslashes ($_POST['title']); $_SESSION['old_entries'] = $_POST['old_entries'];