What should you pay attention to when php users log in?

(*-*)浩
Release: 2023-02-24 06:40:01
Original
2280 people have browsed it

What should php users pay attention to when logging in?

What should you pay attention to when php users log in?

The password must be encrypted using MD5 (password string).

The name of the login form should not be the same as the database field to avoid exposing the table fields.

The table name, field name, and password of the user table should be difficult to guess.

Use verification code to verify login to prevent brute force cracking.

Verify whether the submitted data comes from this website. (Recommended learning: PHP programming from entry to proficiency)

The database part of the login background processing code uses preprocessing and filtering to prevent SQL injection.

For example: it needs to handle authentication, confirm email, update account (password, email) and other things.

<?php
     function user_change_email ($password1,$new_email,$user_name) {
      global $feedback,$hidden_hash_var;
      if (validate_email($new_email)) {
        $hash=md5($new_email.$hidden_hash_var);
        file://改变数据库中确认用的无序码值,但不改变email
       file://发出一个带有新认证码的确认email
        $user_name=strtolower($user_name);
        $password1=strtolower($password1);
        $sql="UPDATE user SET confirm_hash=&#39;$hash&#39; WHERE user_name=&#39;$user_name&#39; AND password=&#39;". md5($password1) ."&#39;";
        $result=db_query($sql);
        if (!$result || db_affected_rows($result) < 1) {
         $feedback .= &#39; ERROR - Incorrect User Name Or Password &#39;;
         return false;
         } else {
          $feedback .= &#39; Confirmation Sent &#39;;
          user_send_confirm_email($new_email,$hash);
          return true;
          }
        } else {
          $feedback .= &#39; New Email Address Appears Invalid &#39;;
          return false;
         }
        }
     function user_confirm($hash,$email) {
       /*
        用户点击认证email的相关连接时,连到一个确认的页面,该页面会调用这个函数,
       */
      global $feedback,$hidden_hash_var;
       file://verify that they didn&#39;t tamper with the email address
       $new_hash=md5($email.$hidden_hash_var);
       if ($new_hash && ($new_hash==$hash)) {
         file://在数据库中找出这个记录
         $sql="SELECT * FROM user WHERE confirm_hash=&#39;$hash&#39;";
         $result=db_query($sql);
         if (!$result || db_numrows($result) < 1) {
           $feedback .= &#39; ERROR - Hash Not Found &#39;;
           return false;
         } else {
           file://确认email,并且设置帐号为已经激活
           $feedback .= &#39; User Account Updated - You Are Now Logged In &#39;;
           user_set_tokens(db_result($result,0,&#39;user_name&#39;));
           $sql="UPDATE user SET email=&#39;$email&#39;,is_confirmed=&#39;1&#39; WHERE confirm_hash=&#39;$hash&#39;";
           $result=db_query($sql);
           return true;
          }
         } else {
          $feedback .= &#39; HASH INVALID - UPDATE FAILED &#39;;
          return false;
         }
        }
     function user_send_confirm_email($email,$hash) {
       /*
        这个函数在首次注册或者改变email地址时使用
       */
        $message = "Thank You For Registering at Company.com".
        "
Simply follow this link to confirm your registration: ".
       "
http://www.company.com/account/confirm.php?hash=$hash&email=". urlencode($email). "
Once you confirm, you can use the services on PHPBuilder.";
mail ($email,&#39;Registration Confirmation&#39;,$message,&#39;From: noreply@company.com&#39;);
      }
     ?>
Copy after login

Perhaps we do not use this method for user authentication, but session and other methods, but this article still inspires us in terms of how to encrypt and confirm.

The above is the detailed content of What should you pay attention to when php users log in?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!