最近、インターネットでつまずいたログインスクリプトに独自のセキュリティを実装しようとしています。各ユーザーのソルトを生成するための独自のスクリプトの作成方法の学習に苦労した後、password_hashを見つけました。
私が理解していることから(このページの読み取りに基づいて: http://php.net/manual/en/faq.passwords.php )、使用するときにすでに塩が行に生成されていますpassword_hash。これは本当ですか?
私が持っていた別の質問は、2つの塩を持っているのが賢明ではないでしょうか?ファイルに直接1つとDBに1つそうすれば、誰かがDBであなたのソルトを危険にさらしても、あなたはそれをファイルに直接持っていますか?私はここで塩を保存することは決して賢い考えではないことを読みましたが、それが人々の意味を常に混乱させました。
パスワードを保存するには、password_hash
を使用することをお勧めします。 DBとファイルに分けないでください。
次の入力があるとします。
$password = $_POST['password'];
概念を理解するためだけに入力を検証するわけではありません。
最初にこれを行うことでパスワードをハッシュします:
$hashed_password = password_hash($password, PASSWORD_DEFAULT);
次に、出力を確認します。
var_dump($hashed_password);
ご覧のとおり、ハッシュ化されています。 (これらの手順を実行したと仮定します)。
次に、このhashed_passwordをデータベースに保存します。そして、ユーザーがログインを要求したときに、このハッシュ値を使用してパスワード入力を確認します。
// Query the database for username and password
// ...
if(password_verify($password, $hashed_password)) {
// If the password inputs matched the hashed password in the database
// Do something, you know... log them in.
}
// Else, Redirect them back to the login page.
はい、正しく理解しました。password_hash()関数は独自にソルトを生成し、結果のハッシュ値にソルトを含めます。データベースにソルトを保存することは完全に正しいことであり、既知であってもその役割を果たします。
// Hash a new password for storing in the database.
// The function automatically generates a cryptographically safe salt.
$hashToStoreInDb = password_hash($_POST['password'], PASSWORD_DEFAULT);
// Check if the hash of the entered login password, matches the stored hash.
// The salt and the cost factor will be extracted from $existingHashFromDb.
$isPasswordCorrect = password_verify($_POST['password'], $existingHashFromDb);
あなたが言及した2番目の塩(ファイルに保存されているもの)は、実際には胡pepperまたはサーバー側のキーです。ハッシュする前に(塩のように)追加する場合、コショウを追加します。ただし、より良い方法があります。最初にハッシュを計算し、その後、サーバー側のキーでハッシュを(双方向)暗号化します。これにより、必要に応じてキーを変更できます。
ソルトとは対照的に、このキーは秘密にしておく必要があります。多くの場合、人々はそれを混ぜ合わせて塩を隠そうとしますが、塩に仕事をさせて、鍵を使って秘密を追加する方が良いです。
はい、それは本当だ。なぜ関数のphp faqを疑うのですか? :)
password_hash()
の実行結果には4つの部分があります。
ご覧のとおり、ハッシュはその一部です。
もちろん、追加のセキュリティレイヤーに追加のソルトを追加することもできますが、正直なところ、通常のphpアプリケーションではそれはやり過ぎだと思います。デフォルトのbcryptアルゴリズムは適切であり、オプションのblowfishアルゴリズムは間違いなくさらに優れています。
パスワードを保護するためにmd5()を使用しないでください。塩を使用しても、常に危険です!!
以下のように、最新のハッシュアルゴリズムでパスワードを保護します。
<?php
// Your original Password
$password = '121@121';
//PASSWORD_BCRYPT or PASSWORD_DEFAULT use any in the 2nd parameter
/*
PASSWORD_BCRYPT always results 60 characters long string.
PASSWORD_DEFAULT capacity is beyond 60 characters
*/
$password_encrypted = password_hash($password, PASSWORD_BCRYPT);
?>
データベースの暗号化されたパスワードおよびユーザーが入力したパスワードと照合するには、以下の機能を使用します。
<?php
if (password_verify($password_inputted_by_user, $password_encrypted)) {
// Success!
echo 'Password Matches';
}else {
// Invalid credentials
echo 'Password Mismatch';
}
?>
独自のソルトを使用する場合は、カスタム生成された関数を使用してください。以下に従ってください。ただし、PHPの最新バージョンでは非推奨になっているため、お勧めしません。
これを読む http://php.net/manual/en/function.password-hash.php 以下のコードを使用する前に。
<?php
$options = [
'salt' => your_custom_function_for_salt(),
//write your own code to generate a suitable & secured salt
'cost' => 12 // the default cost is 10
];
$hash = password_hash($your_password, PASSWORD_DEFAULT, $options);
?>
これらがすべて役立つことを願っています!!
PHPのパスワード関数に組み込まれている後方互換性と前方互換性に関する明確な議論はありません。特に:
crypt()
の適切に記述されたラッパーであり、本質的にcrypt()
-と下位互換性があります古いハッシュアルゴリズムや安全でないハッシュアルゴリズムを使用している場合でも、ハッシュをフォーマットします。password_needs_rehash()
と少しのロジックを認証ワークフローに挿入すると、ハッシュを最新の状態に保ち、ワークフローに対する将来の変更がゼロになる可能性がある将来のアルゴリズム。注:指定されたアルゴリズムと一致しない文字列には、非暗号化互換ハッシュを含め、再ハッシュが必要であるというフラグが立てられます。例えば:
class FakeDB {
public function __call($name, $args) {
printf("%s::%s(%s)\n", __CLASS__, $name, json_encode($args));
return $this;
}
}
class MyAuth {
protected $dbh;
protected $fakeUsers = [
// old crypt-md5 format
1 => ['password' => '$1$AVbfJOzY$oIHHCHlD76Aw1xmjfTpm5.'],
// old salted md5 format
2 => ['password' => '3858f62230ac3c915f300c664312c63f', 'salt' => 'bar'],
// current bcrypt format
3 => ['password' => '$2y$10$3eUn9Rnf04DR.aj8R3WbHuBO9EdoceH9uKf6vMiD7tz766rMNOyTO']
];
public function __construct($dbh) {
$this->dbh = $dbh;
}
protected function getuser($id) {
// just pretend these are coming from the DB
return $this->fakeUsers[$id];
}
public function authUser($id, $password) {
$userInfo = $this->getUser($id);
// Do you have old, turbo-legacy, non-crypt hashes?
if( strpos( $userInfo['password'], '$' ) !== 0 ) {
printf("%s::legacy_hash\n", __METHOD__);
$res = $userInfo['password'] === md5($password . $userInfo['salt']);
} else {
printf("%s::password_verify\n", __METHOD__);
$res = password_verify($password, $userInfo['password']);
}
// once we've passed validation we can check if the hash needs updating.
if( $res && password_needs_rehash($userInfo['password'], PASSWORD_DEFAULT) ) {
printf("%s::rehash\n", __METHOD__);
$stmt = $this->dbh->prepare('UPDATE users SET pass = ? WHERE user_id = ?');
$stmt->execute([password_hash($password, PASSWORD_DEFAULT), $id]);
}
return $res;
}
}
$auth = new MyAuth(new FakeDB());
for( $i=1; $i<=3; $i++) {
var_dump($auth->authuser($i, 'foo'));
echo PHP_EOL;
}
出力:
MyAuth::authUser::password_verify
MyAuth::authUser::rehash
FakeDB::prepare(["UPDATE users SET pass = ? WHERE user_id = ?"])
FakeDB::execute([["$2y$10$zNjPwqQX\/RxjHiwkeUEzwOpkucNw49yN4jjiRY70viZpAx5x69kv.",1]])
bool(true)
MyAuth::authUser::legacy_hash
MyAuth::authUser::rehash
FakeDB::prepare(["UPDATE users SET pass = ? WHERE user_id = ?"])
FakeDB::execute([["$2y$10$VRTu4pgIkGUvilTDRTXYeOQSEYqe2GjsPoWvDUeYdV2x\/\/StjZYHu",2]])
bool(true)
MyAuth::authUser::password_verify
bool(true)
最後の注意として、ログイン時にのみユーザーのパスワードを再ハッシュできるので、ユーザーを保護するために「サンセット」の安全でないレガシーハッシュを検討する必要があります。これにより、一定の猶予期間の後、安全でない[例:裸のMD5/SHA /その他の弱い]ハッシュをすべて削除し、ユーザーにアプリケーションのパスワードリセットメカニズムに依存させることを意味します。
クラスパスワードの完全なコード:
Class Password {
public function __construct() {}
/**
* Hash the password using the specified algorithm
*
* @param string $password The password to hash
* @param int $algo The algorithm to use (Defined by PASSWORD_* constants)
* @param array $options The options for the algorithm to use
*
* @return string|false The hashed password, or false on error.
*/
function password_hash($password, $algo, array $options = array()) {
if (!function_exists('crypt')) {
trigger_error("Crypt must be loaded for password_hash to function", E_USER_WARNING);
return null;
}
if (!is_string($password)) {
trigger_error("password_hash(): Password must be a string", E_USER_WARNING);
return null;
}
if (!is_int($algo)) {
trigger_error("password_hash() expects parameter 2 to be long, " . gettype($algo) . " given", E_USER_WARNING);
return null;
}
switch ($algo) {
case PASSWORD_BCRYPT :
// Note that this is a C constant, but not exposed to PHP, so we don't define it here.
$cost = 10;
if (isset($options['cost'])) {
$cost = $options['cost'];
if ($cost < 4 || $cost > 31) {
trigger_error(sprintf("password_hash(): Invalid bcrypt cost parameter specified: %d", $cost), E_USER_WARNING);
return null;
}
}
// The length of salt to generate
$raw_salt_len = 16;
// The length required in the final serialization
$required_salt_len = 22;
$hash_format = sprintf("$2y$%02d$", $cost);
break;
default :
trigger_error(sprintf("password_hash(): Unknown password hashing algorithm: %s", $algo), E_USER_WARNING);
return null;
}
if (isset($options['salt'])) {
switch (gettype($options['salt'])) {
case 'NULL' :
case 'boolean' :
case 'integer' :
case 'double' :
case 'string' :
$salt = (string)$options['salt'];
break;
case 'object' :
if (method_exists($options['salt'], '__tostring')) {
$salt = (string)$options['salt'];
break;
}
case 'array' :
case 'resource' :
default :
trigger_error('password_hash(): Non-string salt parameter supplied', E_USER_WARNING);
return null;
}
if (strlen($salt) < $required_salt_len) {
trigger_error(sprintf("password_hash(): Provided salt is too short: %d expecting %d", strlen($salt), $required_salt_len), E_USER_WARNING);
return null;
} elseif (0 == preg_match('#^[a-zA-Z0-9./]+$#D', $salt)) {
$salt = str_replace('+', '.', base64_encode($salt));
}
} else {
$salt = str_replace('+', '.', base64_encode($this->generate_entropy($required_salt_len)));
}
$salt = substr($salt, 0, $required_salt_len);
$hash = $hash_format . $salt;
$ret = crypt($password, $hash);
if (!is_string($ret) || strlen($ret) <= 13) {
return false;
}
return $ret;
}
/**
* Generates Entropy using the safest available method, falling back to less preferred methods depending on support
*
* @param int $bytes
*
* @return string Returns raw bytes
*/
function generate_entropy($bytes){
$buffer = '';
$buffer_valid = false;
if (function_exists('mcrypt_create_iv') && !defined('PHALANGER')) {
$buffer = mcrypt_create_iv($bytes, MCRYPT_DEV_URANDOM);
if ($buffer) {
$buffer_valid = true;
}
}
if (!$buffer_valid && function_exists('openssl_random_pseudo_bytes')) {
$buffer = openssl_random_pseudo_bytes($bytes);
if ($buffer) {
$buffer_valid = true;
}
}
if (!$buffer_valid && is_readable('/dev/urandom')) {
$f = fopen('/dev/urandom', 'r');
$read = strlen($buffer);
while ($read < $bytes) {
$buffer .= fread($f, $bytes - $read);
$read = strlen($buffer);
}
fclose($f);
if ($read >= $bytes) {
$buffer_valid = true;
}
}
if (!$buffer_valid || strlen($buffer) < $bytes) {
$bl = strlen($buffer);
for ($i = 0; $i < $bytes; $i++) {
if ($i < $bl) {
$buffer[$i] = $buffer[$i] ^ chr(mt_Rand(0, 255));
} else {
$buffer .= chr(mt_Rand(0, 255));
}
}
}
return $buffer;
}
/**
* Get information about the password hash. Returns an array of the information
* that was used to generate the password hash.
*
* array(
* 'algo' => 1,
* 'algoName' => 'bcrypt',
* 'options' => array(
* 'cost' => 10,
* ),
* )
*
* @param string $hash The password hash to extract info from
*
* @return array The array of information about the hash.
*/
function password_get_info($hash) {
$return = array('algo' => 0, 'algoName' => 'unknown', 'options' => array(), );
if (substr($hash, 0, 4) == '$2y$' && strlen($hash) == 60) {
$return['algo'] = PASSWORD_BCRYPT;
$return['algoName'] = 'bcrypt';
list($cost) = sscanf($hash, "$2y$%d$");
$return['options']['cost'] = $cost;
}
return $return;
}
/**
* Determine if the password hash needs to be rehashed according to the options provided
*
* If the answer is true, after validating the password using password_verify, rehash it.
*
* @param string $hash The hash to test
* @param int $algo The algorithm used for new password hashes
* @param array $options The options array passed to password_hash
*
* @return boolean True if the password needs to be rehashed.
*/
function password_needs_rehash($hash, $algo, array $options = array()) {
$info = password_get_info($hash);
if ($info['algo'] != $algo) {
return true;
}
switch ($algo) {
case PASSWORD_BCRYPT :
$cost = isset($options['cost']) ? $options['cost'] : 10;
if ($cost != $info['options']['cost']) {
return true;
}
break;
}
return false;
}
/**
* Verify a password against a hash using a timing attack resistant approach
*
* @param string $password The password to verify
* @param string $hash The hash to verify against
*
* @return boolean If the password matches the hash
*/
public function password_verify($password, $hash) {
if (!function_exists('crypt')) {
trigger_error("Crypt must be loaded for password_verify to function", E_USER_WARNING);
return false;
}
$ret = crypt($password, $hash);
if (!is_string($ret) || strlen($ret) != strlen($hash) || strlen($ret) <= 13) {
return false;
}
$status = 0;
for ($i = 0; $i < strlen($ret); $i++) {
$status |= (ord($ret[$i]) ^ ord($hash[$i]));
}
return $status === 0;
}
}