mirror of
https://github.com/prasathmani/tinyfilemanager
synced 2026-03-14 12:45:51 +01:00
random_bytes() only for >PHP7 (#1066)
This commit is contained in:
parent
f380478197
commit
eb8f3d80bc
1 changed files with 5 additions and 1 deletions
|
|
@ -245,7 +245,11 @@ if (defined('FM_EMBED')) {
|
||||||
|
|
||||||
//Generating CSRF Token
|
//Generating CSRF Token
|
||||||
if (empty($_SESSION['token'])) {
|
if (empty($_SESSION['token'])) {
|
||||||
$_SESSION['token'] = bin2hex(random_bytes(32));
|
if (function_exists('random_bytes')) {
|
||||||
|
$_SESSION['token'] = bin2hex(random_bytes(32));
|
||||||
|
} else {
|
||||||
|
$_SESSION['token'] = bin2hex(openssl_random_pseudo_bytes(32));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($auth_users)) {
|
if (empty($auth_users)) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue