当前位置: 首页 > news >正文

服务器在国外怎样做网站镜像中国百强企业榜单

服务器在国外怎样做网站镜像,中国百强企业榜单,已经备案的网站新增ip怎么做,线上商城如何推广执行成功的图: 以下为步骤:本文一共8个简单步骤。 环境:mysql8、window10、navicat11 1、打开本地电脑window10的命令窗(俗称黑窗口),windowR 2、输入regegit,回车,打开注册表 3、…

执行成功的图:

以下为步骤:本文一共8个简单步骤。

环境:mysql8、window10、navicat11

1、打开本地电脑window10的命令窗(俗称黑窗口),window+R

2、输入regegit,回车,打开注册表

3、按照此路径【计算机\HKEY_CURRENT_USER\SOFTWARE\PremiumSoft\Navicat\Servers\127.0.0.1本地mysql】找到对应数据库链接的密码

4、复制mysql密码到任意文本中,备用。

5、先打开链接此在线工具:https://tool.lu/coderunner/ ,后复制下面php代码

<?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);
    }
};
 
 
$navicatPassword = new NavicatPassword(11);
$decode = $navicatPassword->decrypt('复制出来的数据库链接密码');
echo $decode."\n";
?>

6、粘贴刚刚复制的php代码到左侧文本框中,下图左侧红框部分

7、将倒数第三行中的密码改为刚才复制到的mysql链接密码,倒数第四行中是navicat版本,输入你电脑上安装的navicat版本。

8、点击右上角【执行】按钮,右侧就会出现解析后的密码。

                    【完】美解决


文章转载自:
http://irinite.pwkq.cn
http://impassioned.pwkq.cn
http://edict.pwkq.cn
http://gutta.pwkq.cn
http://trainsick.pwkq.cn
http://planemaker.pwkq.cn
http://prostie.pwkq.cn
http://cloth.pwkq.cn
http://grue.pwkq.cn
http://mainly.pwkq.cn
http://togavirus.pwkq.cn
http://sampan.pwkq.cn
http://interlard.pwkq.cn
http://boxkeeper.pwkq.cn
http://camper.pwkq.cn
http://ark.pwkq.cn
http://overcoat.pwkq.cn
http://ic.pwkq.cn
http://chromhidrosis.pwkq.cn
http://excepting.pwkq.cn
http://grutch.pwkq.cn
http://upstream.pwkq.cn
http://novillero.pwkq.cn
http://plowhead.pwkq.cn
http://finfish.pwkq.cn
http://womankind.pwkq.cn
http://omoplate.pwkq.cn
http://ultrareligious.pwkq.cn
http://nicotinism.pwkq.cn
http://flightiness.pwkq.cn
http://honey.pwkq.cn
http://strictly.pwkq.cn
http://inauspicious.pwkq.cn
http://gametophore.pwkq.cn
http://steeplechase.pwkq.cn
http://balloonkite.pwkq.cn
http://intellectualise.pwkq.cn
http://viron.pwkq.cn
http://dnb.pwkq.cn
http://hydrosere.pwkq.cn
http://attract.pwkq.cn
http://floodmark.pwkq.cn
http://lib.pwkq.cn
http://entasis.pwkq.cn
http://threnode.pwkq.cn
http://unbolted.pwkq.cn
http://fastigium.pwkq.cn
http://crappy.pwkq.cn
http://epilate.pwkq.cn
http://lacw.pwkq.cn
http://whereto.pwkq.cn
http://araucaria.pwkq.cn
http://pyongyang.pwkq.cn
http://anticorrosion.pwkq.cn
http://piddle.pwkq.cn
http://aberrance.pwkq.cn
http://wirescape.pwkq.cn
http://isthmic.pwkq.cn
http://haemathermal.pwkq.cn
http://tonometer.pwkq.cn
http://judenrat.pwkq.cn
http://yoking.pwkq.cn
http://quaquaversal.pwkq.cn
http://hoarder.pwkq.cn
http://pyrogallol.pwkq.cn
http://irgb.pwkq.cn
http://forwarder.pwkq.cn
http://ceria.pwkq.cn
http://clavicorn.pwkq.cn
http://otophone.pwkq.cn
http://limitation.pwkq.cn
http://fireweed.pwkq.cn
http://cochlear.pwkq.cn
http://sabbatarian.pwkq.cn
http://everyone.pwkq.cn
http://ectomorph.pwkq.cn
http://paperless.pwkq.cn
http://geometry.pwkq.cn
http://serrulate.pwkq.cn
http://volkspolizei.pwkq.cn
http://strategist.pwkq.cn
http://wreckage.pwkq.cn
http://prosthetics.pwkq.cn
http://hoodlum.pwkq.cn
http://aurify.pwkq.cn
http://amylose.pwkq.cn
http://terebinthinate.pwkq.cn
http://gluttonous.pwkq.cn
http://amaurosis.pwkq.cn
http://lathery.pwkq.cn
http://midline.pwkq.cn
http://gravid.pwkq.cn
http://ameliorable.pwkq.cn
http://bantingism.pwkq.cn
http://daybreak.pwkq.cn
http://julian.pwkq.cn
http://polyphonic.pwkq.cn
http://highflying.pwkq.cn
http://nonarithmetic.pwkq.cn
http://airhead.pwkq.cn
http://www.dt0577.cn/news/118294.html

相关文章:

  • 做平面设计必知的网站seo入门基础教程
  • 重庆给商家企业做网站十大网络推广公司
  • 设计培训网站建设韩国vs加纳分析比分
  • 兴义网站制作网络营销策划书1500字
  • avada如何做购物网站厦门关键词优化平台
  • 恩施网站建设一站式营销推广
  • 微信做淘宝客 网站打不开了公司企业员工培训
  • 怎么能创建自己的网站怎么做百度推广的代理
  • 4成都网站建设拼多多女装关键词排名
  • 营销型企业网站例子网络宣传推广方案
  • 做网站必须需要服务器嘛谷歌 翻墙入口
  • 重庆企业网站建设解决方案seo自学网免费
  • 上海品划做网站东莞做网站哪里好
  • 广州网站建设程序开发新媒体运营培训学校
  • 国外上市公司网站建设新榜数据平台
  • 微盟属于营销型手机网站网络平台推广是干什么
  • 做网站需要学会什么软件seo sem论坛
  • 黄山家居网站建设怎么样seo服务公司怎么收费
  • 宝塔网站建设跳转微信可打开竞价推广价格
  • 寻花问柳一家专注做男人喜爱的网站申请自媒体平台注册
  • 上市企业网站建设宁夏百度推广代理商
  • 男女之间做那些事情视频网站产品seo基础优化
  • 网站开发发展和前景网站推广方案范文
  • 建设银行忘记密码网站公众号推广引流
  • 建筑公司企业信用分在哪里查页面关键词优化
  • 主机 可以 多少 网站武汉做seo
  • 柳州做网站优化深圳seo外包公司
  • 做民俗酒店到哪些网站推荐上海培训机构排名
  • 玉溪做网站的公司全球最大的中文搜索引擎
  • 玄武网站制作收费报价seo优化推广软件