Skip to content
Snippets Groups Projects
Unverified Commit d1ab8985 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Partially backport #1480

parent e65e86a1
No related branches found
No related tags found
No related merge requests found
...@@ -138,19 +138,26 @@ class SessionHandlerPHP extends SessionHandler ...@@ -138,19 +138,26 @@ class SessionHandlerPHP extends SessionHandler
*/ */
public function newSessionId(): string public function newSessionId(): string
{ {
// generate new (secure) session id if ($this->hasSessionCookie()) {
$sid_length = (int) ini_get('session.sid_length'); session_regenerate_id(false);
$sid_bits_per_char = (int) ini_get('session.sid_bits_per_character'); $session_id = session_id();
} else {
// generate new (secure) session id
$sid_length = (int) ini_get('session.sid_length');
$sid_bits_per_char = (int) ini_get('session.sid_bits_per_character');
if (($sid_length * $sid_bits_per_char) < 128) {
Logger::warning("Unsafe defaults used for sessionId generation!");
}
if (($sid_length * $sid_bits_per_char) < 128) { $sessionId = session_create_id();
Logger::warning("Unsafe defaults used for sessionId generation!");
} }
$sessionId = session_create_id();
if (!$sessionId) { if (!$sessionId) {
Logger::warning("Secure session ID generation failed, falling back to custom ID generation."); Logger::warning("Secure session ID generation failed, falling back to custom ID generation.");
$sessionId = bin2hex(openssl_random_pseudo_bytes(16)); $sessionId = bin2hex(openssl_random_pseudo_bytes(16));
} }
Session::createSession($sessionId); Session::createSession($sessionId);
return $sessionId; return $sessionId;
} }
...@@ -165,7 +172,8 @@ class SessionHandlerPHP extends SessionHandler ...@@ -165,7 +172,8 @@ class SessionHandlerPHP extends SessionHandler
public function getCookieSessionId(): ?string public function getCookieSessionId(): ?string
{ {
if (!$this->hasSessionCookie()) { if (!$this->hasSessionCookie()) {
return null; // there's no session cookie, can't return ID // there's no session cookie, can't return ID
return null;
} }
if (headers_sent()) { if (headers_sent()) {
......
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