討論:Wordpress/目錄與檔案:修訂版本之間的差異

出自福留子孫
跳轉到: 導覽搜尋
外掛
外掛
第 29 行: 第 29 行:
 
*#/wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php  中的 retrieve_password() 和 check_password_reset_key($key, $login) 對 $wpdb->users 進行編碼和驗證
 
*#/wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php  中的 retrieve_password() 和 check_password_reset_key($key, $login) 對 $wpdb->users 進行編碼和驗證
 
*#[http://muki.tw/tech/woocommerce-install-and-use/ woocommerce 系列教學 (1/3):安裝與使用]
 
*#[http://muki.tw/tech/woocommerce-install-and-use/ woocommerce 系列教學 (1/3):安裝與使用]
 +
*#[http://muki.tw/tech/woocommerce-product-online/ woocommerce 系列教學 (2/3):商品上架流程]
 +
*#[http://muki.tw/tech/woocommerce-allpay/ woocommerce 系列教學 (3/3):串接第三方金流]

2016年8月17日 (三) 15:28的修訂版本

Portable PHP password hashing framework

salt和password相加,又進行了count次md5,最後和encode64的hash數值累加,就得到了一個以$P$開頭的密碼

<?php
 $password = 'abc';
 global $wp_hasher;
 if ( empty($wp_hasher) ) {
  require_once( './wp-includes/class-phpass.php');
  $wp_hasher = new PasswordHash(8, TRUE);
 }
 echo $wp_hasher->HashPassword($password);
?>

修改WordPress用戶密碼:

  1. wp_users數據表的user_pass字段修改為32位的md5(passowrd)
  2. 當這個用戶在WordPress登錄後,系統會自動將MD5密碼修改為以$P$開頭的密碼。

全域變數

  • $wpdb
  • $wp_hasher


外掛