Shaper-fox / hugoblogtalks

hugo博客评论
0 stars 0 forks source link

post/lookback-mysql-password/ #17

Open utterances-bot opened 1 year ago

utterances-bot commented 1 year ago

Mysql基于navicat记住密码后找回密码 - Wallis

​ 一次比较有意思的经历, 之前买过腾讯云的服务器安装的mysql由于时间过长,密码设置的也相对容易忘记一点,其实网上有一些方案是skip-gr

https://bomir.top/post/lookback-mysql-password/

Bicomir commented 1 year ago

今天又是一个案例,忘记了mongo密码, 但是也在机器上记住了, 以Navicat16为例,菜单栏上点击文件,选择导出连接...,一定要选中导出密码!!!导出格式为*.ncx(该ncx本质上是xml文件,文件中包含连接的全部信息),

Bicomir commented 1 year ago

import javax.crypto.Cipher; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; import javax.xml.bind.DatatypeConverter; import java.nio.charset.StandardCharsets; import java.security.MessageDigest; import java.util.Arrays;

public class Main { public static void main(String []args) { //navicat11解密 // Navicat11Cipher de = new Navicat11Cipher(); // System.out.println(de.decryptString("15057D7BA390")); //navicat12+解密 Navicat12Cipher de12 = new Navicat12Cipher(); // 这个是从导出cnx文件中读取 System.out.println(de12.decryptString("DA01CCE931B7CAD**")); } static class Navicat11Cipher { public static final String DefaultUserKey = "3DC5CA39"; private static byte[] _IV;

    private static SecretKeySpec _Key;
    private static Cipher _Encryptor;
    private static Cipher _Decryptor;

    private static void initKey(String UserKey) {
        try {
            MessageDigest sha1 = MessageDigest.getInstance("SHA1");
            byte[] userkey_data = UserKey.getBytes(StandardCharsets.UTF_8);
            sha1.update(userkey_data, 0, userkey_data.length);
            _Key = new SecretKeySpec(sha1.digest(), "Blowfish");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static void initChiperEncrypt() {
        try {
            // Must use NoPadding
            _Encryptor = Cipher.getInstance("Blowfish/ECB/NoPadding");
            _Encryptor.init(Cipher.ENCRYPT_MODE, _Key);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static void initChiperDecrypt() {
        try {
            // Must use NoPadding
            _Decryptor = Cipher.getInstance("Blowfish/ECB/NoPadding");
            _Decryptor.init(Cipher.DECRYPT_MODE, _Key);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static void initIV() {
        try {
            byte[] initVec = DatatypeConverter.parseHexBinary("FFFFFFFFFFFFFFFF");
            _IV = _Encryptor.doFinal(initVec);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private void xorBytes(byte[] a, byte[] b) {
        for (int i = 0; i < a.length; i++) {
            int aVal = a[i] & 0xff; // convert byte to integer
            int bVal = b[i] & 0xff;
            a[i] = (byte) (aVal ^ bVal); // xor aVal and bVal and typecast to byte
        }
    }

    private void xorBytes(byte[] a, byte[] b, int l) {
        for (int i = 0; i < l; i++) {
            int aVal = a[i] & 0xff; // convert byte to integer
            int bVal = b[i] & 0xff;
            a[i] = (byte) (aVal ^ bVal); // xor aVal and bVal and typecast to byte
        }
    }

    static {
        initKey(DefaultUserKey);
        initChiperEncrypt();
        initChiperDecrypt();
        initIV();
    }

    private byte[] Encrypt(byte[] inData) {
        try {
            byte[] CV = Arrays.copyOf(_IV, _IV.length);
            byte[] ret = new byte[inData.length];

            int blocks_len = inData.length / 8;
            int left_len = inData.length % 8;

            for (int i = 0; i < blocks_len; i++) {
                byte[] temp = Arrays.copyOfRange(inData, i * 8, (i * 8) + 8);

                xorBytes(temp, CV);
                temp = _Encryptor.doFinal(temp);
                xorBytes(CV, temp);

                System.arraycopy(temp, 0, ret, i * 8, 8);
            }

            if (left_len != 0) {
                CV = _Encryptor.doFinal(CV);
                byte[] temp = Arrays.copyOfRange(inData, blocks_len * 8, (blocks_len * 8) + left_len);
                xorBytes(temp, CV, left_len);
                System.arraycopy(temp, 0, ret, blocks_len * 8, temp.length);
            }

            return ret;
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }

    public String encryptString(String inputString) {
        try {
            byte[] inData = inputString.getBytes(StandardCharsets.UTF_8);
            byte[] outData = Encrypt(inData);
            return DatatypeConverter.printHexBinary(outData);
        } catch (Exception e) {
            e.printStackTrace();
            return "";
        }
    }

    private byte[] Decrypt(byte[] inData) {
        try {
            byte[] CV = Arrays.copyOf(_IV, _IV.length);
            byte[] ret = new byte[inData.length];

            int blocks_len = inData.length / 8;
            int left_len = inData.length % 8;

            for (int i = 0; i < blocks_len; i++) {
                byte[] temp = Arrays.copyOfRange(inData, i * 8, (i * 8) + 8);

                temp = _Decryptor.doFinal(temp);
                xorBytes(temp, CV);
                System.arraycopy(temp, 0, ret, i * 8, 8);
                for (int j = 0; j < CV.length; j++) {
                    CV[j] = (byte) (CV[j] ^ inData[i * 8 + j]);
                }
            }

            if (left_len != 0) {
                CV = _Encryptor.doFinal(CV);
                byte[] temp = Arrays.copyOfRange(inData, blocks_len * 8, (blocks_len * 8) + left_len);

                xorBytes(temp, CV, left_len);
                for (int j = 0; j < temp.length; j++) {
                    ret[blocks_len * 8 + j] = temp[j];
                }
            }

            return ret;
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }

    public String decryptString(String hexString) {
        try {
            byte[] inData = DatatypeConverter.parseHexBinary(hexString);
            byte[] outData = Decrypt(inData);
            return new String(outData, StandardCharsets.UTF_8);
        } catch (Exception e) {
            e.printStackTrace();
            return "";
        }
    }
}
static class Navicat12Cipher {
    private static SecretKeySpec _AesKey;
    private static IvParameterSpec _AesIV;

    static {
        _AesKey = new SecretKeySpec("libcckeylibcckey".getBytes(StandardCharsets.UTF_8), "AES");
        _AesIV = new IvParameterSpec("libcciv libcciv ".getBytes(StandardCharsets.UTF_8));
    }

    public String encryptString(String plaintext) {
        try {
            Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
            cipher.init(Cipher.ENCRYPT_MODE, _AesKey, _AesIV);
            byte[] ret = cipher.doFinal(plaintext.getBytes(StandardCharsets.UTF_8));
            return DatatypeConverter.printHexBinary(ret);
        } catch (Exception e) {
            e.printStackTrace();
            return "";
        }
    }

    public String decryptString(String ciphertext) {
        try {
            Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
            cipher.init(Cipher.DECRYPT_MODE, _AesKey, _AesIV);
            byte[] ret = cipher.doFinal(DatatypeConverter.parseHexBinary(ciphertext));
            return new String(ret, StandardCharsets.UTF_8);
        } catch (Exception e) {
            e.printStackTrace();
            return "";
        }
    }
}

}

Bicomir commented 1 year ago

上面是解析加密后的mongo密码, 于是又快乐的找回了密码~