forked from vrana/adminer
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AdminerLoginOtp: Autocomplete hints for OTP input field, code refacto…
…ring Tanks to SGCBB (vrana#488)
- Loading branch information
Showing
1 changed file
with
64 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,79 @@ | ||
<?php | ||
|
||
/** Require One-Time Password at login | ||
* @link https://www.adminer.org/plugins/otp/ | ||
* @author Jakub Vrana, https://www.vrana.cz/ | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 | ||
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) | ||
*/ | ||
class AdminerLoginOtp { | ||
/** @access protected */ | ||
var $secret; | ||
|
||
/** | ||
* @param string decoded secret, e.g. base32_decode("SECRET") | ||
*/ | ||
function __construct($secret) { | ||
* @link https://www.adminer.org/plugins/otp/ | ||
* @author Jakub Vrana, https://www.vrana.cz/ | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 | ||
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) | ||
*/ | ||
class AdminerLoginOtp | ||
{ | ||
/** @var string */ | ||
private $secret; | ||
|
||
/** | ||
* @param string $secret Decoded secret, e.g. base64_decode("ENCODED_SECRET"). | ||
*/ | ||
public function __construct($secret) { | ||
$this->secret = $secret; | ||
if ($_POST["auth"]) { | ||
$_SESSION["otp"] = (string) $_POST["auth"]["otp"]; | ||
|
||
if (isset($_POST["auth"])) { | ||
$_SESSION["otp"] = (string)$_POST["auth"]["otp"]; | ||
} | ||
} | ||
|
||
function loginFormField($name, $heading, $value) { | ||
if ($name == 'password') { | ||
return $heading . $value | ||
. "<tr><th><acronym title='One Time Password' lang='en'>OTP</acronym>" | ||
. "<td><input type='number' name='auth[otp]' value='" . h($_SESSION["otp"]) . "' size='6' autocomplete='off'>\n" | ||
; | ||
} | ||
|
||
/** | ||
* @param string $name | ||
* @param string $heading | ||
* @param string $value | ||
* | ||
* @return string|null | ||
*/ | ||
public function loginFormField($name, $heading, $value) { | ||
if ($name != "password") return null; | ||
|
||
return $heading . $value . | ||
"<tr><th><abbr title='" . lang('One Time Password') . "' lang='en'>OTP</abbr></th>" . | ||
"<td><input type='text' name='auth[otp]' value='" . h($_SESSION["otp"]) . "' " . | ||
"size='6' autocomplete='one-time-code' inputmode='numeric' maxlength='6' pattern='\d{6}'/></td>" . | ||
"</tr>\n"; | ||
} | ||
|
||
function login($login, $password) { | ||
if (isset($_SESSION["otp"])) { | ||
$timeSlot = floor(time() / 30); | ||
foreach (array(0, -1, 1) as $skew) { | ||
if ($_SESSION["otp"] == $this->getOtp($timeSlot + $skew)) { | ||
restart_session(); | ||
unset($_SESSION["otp"]); | ||
stop_session(); | ||
return; | ||
} | ||
/** | ||
* @param string $login | ||
* @param string $password | ||
* | ||
* @return string|null | ||
*/ | ||
public function login($login, $password) { | ||
if (!isset($_SESSION["otp"])) return null; | ||
|
||
$timeSlot = floor(time() / 30); | ||
|
||
foreach (array(0, -1, 1) as $skew) { | ||
if ($_SESSION["otp"] == $this->getOtp($timeSlot + $skew)) { | ||
restart_session(); | ||
unset($_SESSION["otp"]); | ||
stop_session(); | ||
|
||
return null; | ||
} | ||
return 'Invalid OTP.'; | ||
} | ||
|
||
return lang('Invalid OTP code.'); | ||
} | ||
|
||
function getOtp($timeSlot) { | ||
$data = str_pad(pack('N', $timeSlot), 8, "\0", STR_PAD_LEFT); | ||
$hash = hash_hmac('sha1', $data, $this->secret, true); | ||
|
||
/** | ||
* @param int $timeSlot | ||
* | ||
* @return int | ||
*/ | ||
private function getOtp($timeSlot) { | ||
$data = str_pad(pack("N", $timeSlot), 8, "\0", STR_PAD_LEFT); | ||
$hash = hash_hmac("sha1", $data, $this->secret, true); | ||
$offset = ord(substr($hash, -1)) & 0xF; | ||
$unpacked = unpack('N', substr($hash, $offset, 4)); | ||
$unpacked = unpack("N", substr($hash, $offset, 4)); | ||
|
||
return ($unpacked[1] & 0x7FFFFFFF) % 1e6; | ||
} | ||
} |