1 迅雷
在使用迅雷下载种子文件时,碰到 正在努力获取种子文件,但是一直无法加载出来
的情况,因此找到了一个 解决方案 。在该方案中,主要通过修改 DNS
解决问题,具体表现为将网络设置中的 DNS
设置为下述配置。
首选DNS服务器:223.5.5.5
备用DNS服务器:223.6.6.6
2 NAVICAT
在日常使用 navicat
时,可能出现忘记密码的情况,这时需要通过找回密码才能连接数据库,这时主要参考 navicat中的密码忘记了,解密navicat导出的密码 ,通过下述操作进行密码找回。
2.1 导出连接
首先,将待连接数据库导出,具体表现为 导出连接
,此处需注意 不要打开任何表和查询页
。
2.2 获取密文
将 连接导出
文件打开,检索登录账户及对应的加密密文。
2.3 转译片段
根据密文转译规则,形成转译代码片段,具体如下:
<?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);
}
};
//navicat版本,11,或者12.如果用的15,这里可以填12试试
$navicatPassword = new NavicatPassword(12);
//解密
$decode = $navicatPassword->decrypt('XXXXXXXXXXXXXXXXXXX'); // navicat密钥
echo $decode."\n";
?>
在代码片段中,注意将 navicat密钥
进行替换为待转译密文。同时,根据 navicat
版本进行相应的调整。
2.4 代码转译
到这一步,主要是执行转译代码段,可以线上执行,也可以本地执行,这里提供 代码在线运行-在线工具 进行工作。
代码段执行完之后,即可获取解密密文,也即所需 忘记密码
。
参考文献
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » softawre日常使用(随时更新)
发表评论 取消回复