navicat连接服务器Mysql 忘记密码 ------- 查看密码

  1. 打开注册表编辑器
regedit

navicat连接服务器Mysql 忘记密码 ------- 查看密码_第1张图片
2. 找到navicat密码保存位置
路径如下

计算机\HKEY_CURRENT_USER\Software\PremiumSoft

navicat连接服务器Mysql 忘记密码 ------- 查看密码_第2张图片

  1. 找到navicat连接的数据库
    navicat连接服务器Mysql 忘记密码 ------- 查看密码_第3张图片
  2. 找到psd文件
    navicat连接服务器Mysql 忘记密码 ------- 查看密码_第4张图片
  3. 打开PHP代码在线工具
https://tool.lu/coderunner/
  1. 复制PHP解密代码

namespace FatSmallTools;
class NavicatPassword
{
   
    protected $version = 0;
    protected $aesKey = 'libcckeylibcckey';
    protected $aesIv = 'libcciv libcciv ';
    protected $blowString = '3DC5CA39';
    protected $blowKey = null;
    protected $blowIv = null;
    public function __construct($version = 12)
    {
   
        $this->version = $version;
        $this->blowKey = sha1('3DC5CA39', true);
        $this->blowIv = hex2bin('d9c7c3c8870d64bd');
    }
    public function encrypt($string)
    {
   
        $result = FALSE;
        switch ($this->version) {
   
            case 11:
                $result = $this->encryptEleven($string);
                break;
            case 12:

你可能感兴趣的:(mysql,阿里云)