Skip to content
Snippets Groups Projects
Commit 0a96d94a authored by Patrick Schmalstig's avatar Patrick Schmalstig
Browse files

open_basedir may restrict kernel uuid use so remove it

parent 35cd3e38
No related branches found
No related tags found
No related merge requests found
......@@ -299,13 +299,6 @@ function get_secure_v1_guid() : string
*/
function get_secure_random_v4_guid() : string
{
// Use the Linux kernel for a GUID if available
if (file_exists('/proc/sys/kernel/random/uuid')) {
$kernel_guid = file_get_contents('/proc/sys/kernel/random/uuid');
if (($kernel_guid !== false) && (strlen($kernel_guid) >= 32)) {
return $kernel_guid;
}
}
$bytes = random_bytes(16);
$hex = bin2hex($bytes);
$hex .= $hex[8] . $hex[13] . $hex[18] . $hex[23];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment