logSys
logSys copied to clipboard
PHP Secure, Advanced Login System
if ($remember_me === true && $this->config['features']['remember_me'] === true) { $iv = openssl_random_pseudo_bytes(openssl_cipher_iv_length('AES-128-CBC')); $rememberMeCookie = base64_encode(openssl_encrypt($userID, 'AES-128-CBC', $this->config['keys']['cookie'], 0, $iv)) . ':|:' . base64_encode($iv); Error is: Warning: openssl_decrypt(): IV passed is...
On your web site, there's a link named MySQL to https://github.com/subins2000/logSys/blob/master/sql/mysql.sql#L8 on line 26 it reads: `requested` varchar(20) NOT NULL COMMENT 'The date when token was created' . There's a...
For security purpose only allows customer login from the first device that they used name and password login. It is different with two steps validation, I only allowed the first...
Hi, have an issue where multiple users are logging in from the same device. At the moment it looks like a single cookie is created when remember device is checked,...