当前位置:   article > 正文

FinalShell高级版教程(自用)_finalshell高级版账号

finalshell高级版账号

1.输入一个账号密码

2.复制机器码

3.在idea中创建一个普通Java程序,将下面的代码复制进去,执行代码,在控制台输入你复制的机器码,获得激活码

  1. import java.io.IOException;
  2. import java.security.MessageDigest;
  3. import java.security.NoSuchAlgorithmException;
  4. import java.util.Scanner;
  5. public class FinalShell {
  6. public static void main(String[] args) throws NoSuchAlgorithmException, IOException {
  7. System.out.print("请输入FinalShell的离线机器码:");
  8. @SuppressWarnings("resource")
  9. Scanner reader = new Scanner(System.in);
  10. String machineCode = reader.nextLine();
  11. generateKey(machineCode);
  12. }
  13. public static void generateKey(String hardwareId) throws NoSuchAlgorithmException {
  14. String proKey = transform(61305 + hardwareId + 8552);
  15. String pfKey = transform(2356 + hardwareId + 13593);
  16. System.out.println("请将此行复制到离线激活中:" + proKey);
  17. }
  18. public static String transform(String str) throws NoSuchAlgorithmException {
  19. @SuppressWarnings("unused")
  20. String md5 = hashMD5(str);
  21. return hashMD5(str).substring(8, 24);
  22. }
  23. public static String hashMD5(String str) throws NoSuchAlgorithmException {
  24. MessageDigest digest = MessageDigest.getInstance("MD5");
  25. byte[] hashed = digest.digest(str.getBytes());
  26. StringBuilder sb = new StringBuilder();
  27. for (byte b : hashed) {
  28. int len = b & 0xFF;
  29. if (len < 16) {
  30. sb.append("0");
  31. }
  32. sb.append(Integer.toHexString(len));
  33. }
  34. return sb.toString();
  35. }
  36. }

4.复制激活码,点击激活

 5.激活成功

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/701656
推荐阅读
相关标签
  

闽ICP备14008679号