Ecstore会员密码加密方式破解

<?php
//以下是加密方式,亲测有效
$string_md5 = md5(md5("密码")."用户名"."注册时间");//三个参数组合:密码先MD5加密+用户名+注册时间
$front_string = substr($string_md5,0,31);//截取了一位
$end_string = 's'.$front_string;
print_r($end_string);
原文地址:https://www.cnblogs.com/blts/p/6097541.html