28 11 2024

查看Navicat数据库密码的步骤可以简洁地总结如下:

  1. 导出连接信息:首先,在Navicat的左上角找到并点击“导出连接信息”。接着,选择你需要查看密码的数据库连接信息,并确保勾选了“导出密码”的选项。UEditor_snapScreen_tmp.jpg
    UEditor_snapScreen_tmp.jpg

  2. 查看.ncx文件:操作上述步骤后,Navicat会导出一个包含连接信息的.ncx文件。使用记事本或任何文本编辑器打开这个文件,找到其中的Password字段,这里会显示加密后的密码字符串。

  3. UEditor_snapScreen_tmp.jpg

  4. 复制加密密码:将Password字段后面的加密密码(例如FD6A72E7E05B8D7F01FCE049F4DD76EA)复制出来,准备用于解密。


  5. 使用解密工具:访问提供的工具使用地址(这一步需要你提供具体的网址或工具,因为文章中并未直接提供)。在工具界面中,根据你的Navicat版本设置正确的版本号,例如,如果你使用的是Navicat 16,则可能需要在工具中选择版本12(具体取决于工具的版本兼容性)。

解密在线链接:https://tool.lu/coderunner/

复制以下代码到在线链接中,进行解密

<?php
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:
                $result = $this->encryptTwelve($string);
                break;
            default:
                break;
        }
         
        return $result;
    }
     
    protected function encryptEleven($string)
    {
        $round = intval(floor(strlen($string) / 8));
        $leftLength = strlen($string) % 8;
        $result = '';
        $currentVector = $this->blowIv;
         
        for ($i = 0; $i < $round; $i++) {
            $temp = $this->encryptBlock($this->xorBytes(substr($string, 8 * $i, 8), $currentVector));
            $currentVector = $this->xorBytes($currentVector, $temp);
            $result .= $temp;
        }
         
        if ($leftLength) {
            $currentVector = $this->encryptBlock($currentVector);
            $result .= $this->xorBytes(substr($string, 8 * $i, $leftLength), $currentVector);
        }
         
        return strtoupper(bin2hex($result));
    }
     
    protected function encryptBlock($block)
    {
        return openssl_encrypt($block, 'BF-ECB', $this->blowKey, OPENSSL_RAW_DATA|OPENSSL_NO_PADDING);
    }
     
    protected function decryptBlock($block)
    {
        return openssl_decrypt($block, 'BF-ECB', $this->blowKey, OPENSSL_RAW_DATA|OPENSSL_NO_PADDING);
    }
     
    protected function xorBytes($str1, $str2)
    {
        $result = '';
        for ($i = 0; $i < strlen($str1); $i++) {
            $result .= chr(ord($str1[$i]) ^ ord($str2[$i]));
        }
         
        return $result;
    }
     
    protected function encryptTwelve($string)
    {
        $result = openssl_encrypt($string, 'AES-128-CBC', $this->aesKey, OPENSSL_RAW_DATA, $this->aesIv);
        return strtoupper(bin2hex($result));
    }
     
    public function decrypt($string)
    {
        $result = FALSE;
        switch ($this->version) {
            case 11:
                $result = $this->decryptEleven($string);
                break;
            case 12:
                $result = $this->decryptTwelve($string);
                break;
            default:
                break;
        }
         
        return $result;
    }
     
    protected function decryptEleven($upperString)
    {
        $string = hex2bin(strtolower($upperString));
         
        $round = intval(floor(strlen($string) / 8));
        $leftLength = strlen($string) % 8;
        $result = '';
        $currentVector = $this->blowIv;
         
        for ($i = 0; $i < $round; $i++) {
            $encryptedBlock = substr($string, 8 * $i, 8);
            $temp = $this->xorBytes($this->decryptBlock($encryptedBlock), $currentVector);
            $currentVector = $this->xorBytes($currentVector, $encryptedBlock);
            $result .= $temp;
        }
         
        if ($leftLength) {
            $currentVector = $this->encryptBlock($currentVector);
            $result .= $this->xorBytes(substr($string, 8 * $i, $leftLength), $currentVector);
        }
         
        return $result;
    }
     
    protected function decryptTwelve($upperString)
    {
        $string = hex2bin(strtolower($upperString));
        return openssl_decrypt($string, 'AES-128-CBC', $this->aesKey, OPENSSL_RAW_DATA, $this->aesIv);
    }
};
 
 
//需要指定版本两种,11或12
//$navicatPassword = new NavicatPassword(11);
//这里我指定的12的版本,原先指定的11,执行之后的密码是乱码
$navicatPassword = new NavicatPassword(12);
 
//解密
//$decode = $navicatPassword->decrypt('5658213B');
$decode = $navicatPassword->decrypt('FD6A72E7E05B8D7F01FCE049F4DD76EA');
echo $decode."\n";
?>

UEditor_snapScreen_tmp.jpg

解密密码:将复制的加密密钥粘贴到工具提供的指定位置,并执行解密操作。解密后,你将获得原始的数据库连接密码。

通过以上步骤,即便原本在Navicat中密码只显示为加密后的隐藏符,也可以恢复查看原始密码。这个过程涉及到了导出连接信息、查找加密密码、以及使用专门工具进行解密,既简单又直接。



延伸阅读