dtwncxs3547 2015-06-03 09:47
浏览 61
已采纳

批量密码哈希PHP-LOGIN PROJECT代码

I have the following question / requirement.

My website has 2000 users, however the passwords are stored using Plain text (I know this is super bad). From reading various website blogs, i found that i need to use modern password-hashing and salting. I found php-login.net . They use modern salting / hashing.

I have downloaded the minimal login script which i will implement in my website. I have set up xampp to test locally. When i register a user is hashes the passwords and i can login.

My main requirement is that i want to hash all my current plain text passwords. php login using php password compatibility library.

password_compatibility_library

How can i hash all the plain passwords in database, because i am not going to hash 2000 1 by 1.

I assume i can write a script that will update all records in database using the password library.

  • 写回答

2条回答 默认 最新

  • doukuang1897 2015-06-03 10:07
    关注
    <?php
    // you should put your db connection stuff here
    require('connect.php'); 
    
    //you create a new column to store hashed passwords. Good idea if
    //something goes bad. You should drop the column with the original
    // passwords once every thing is ok and done.
    $result = mysqli_query(
        $conn,
        'alter table users add column hashed_password varchar(255) not null'
    ); 
    
    if ($result===FALSE)
    {
    // handle error here
    }
    
    $result = mysqli_query($conn, 'select * from users');
    if ($result===FALSE)
    {
    // handle error here
    }else
    {
        while($user = mysqli_fetch_assoc($result)
        {
            // you could use PASSWORD_DEFAULT here but I wouldn't. If in a
            // future migration the default password crypt function changes
            // your system won't work and it will be hard to know why.
            $hashedPassword = password_hash($user['password'], PASSWORD_BCRYPT);
            $result2 = mysqli_query($conn,'update users set hashed_password = \''. mysqli_real_escape_string($hashedPassword) .'\' where id=\''. $user['id'] .'\'');
            if ($result2 === FALSE)
            {
            //handle error here
            }
        }
    }
    

    then you simply check the password in hashed_password column and not the original. If everything goes ok and you can login with no issues you can delete the original passwords column and you are done.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 matlab实现基于主成分变换的图像融合。
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊