key:IDEA

value:61156-YRN2M-5MNCN-NZ8D2-7B4EW-U12L4

(2)

key:huangwei
value:97493-G3A41-0SO24-W57LI-Y2UGI-JGTU2

(3)

key:hkl520
value:34423-VZYXD-FQXZ7-O6I7U-J3ZK8-R7V62

(4)

key:Intelligent
value:40957-EG6O9-2915L-CF1RP-57IQJ-Y6VZ3

(5)

key:tommy
value:49164-YPNVL-OXUZL-XIWM4-Z9OHC-LF053

(6)

key:whuanghk
value:98220-IN97R-TV1ID-2JAPO-OXZEO-LAM70

(7)

key:itey
value:91758-T1CLA-C64F3-T7X5R-A7YDO-CRSN1

以下是破解代码:

import java.math.BigInteger;

import java.util.Date;

import java.util.Random;

import java.util.zip.CRC32;

public class keygen

{

/**

* @param s

* @param i

* @param bytes

* @return

*/

public static short getCRC(String s, int i, byte bytes[])

{

CRC32 crc32 = new CRC32();

if (s != null)

{

for (int j = 0; j < s.length(); j++)

{

char c = s.charAt(j);

crc32.update(c);

}

}

crc32.update(i);

crc32.update(i >> 8);

crc32.update(i >> 16);

crc32.update(i >> 24);

for (int k = 0; k < bytes.length - 2; k++)

{

byte byte0 = bytes[k];

crc32.update(byte0);

}

return (short) (int) crc32.getValue();

}

/**

* @param biginteger

* @return String

*/

public static String encodeGroups(BigInteger biginteger)

{

BigInteger beginner1 = BigInteger.valueOf(0x39aa400L);

StringBuilder sb = new StringBuilder();

for (int i = 0; biginteger.compareTo(BigInteger.ZERO) != 0; i++)

{

int j = biginteger.mod(beginner1).intValue();

String s1 = encodeGroup(j);

if (i > 0)

{

sb.append("-");

}

sb.append(s1);

biginteger = biginteger.divide(beginner1);

}

return sb.toString();

}

/**

* @param i

* @return

*/

public static String encodeGroup(int i)

{

StringBuilder sb = new StringBuilder();

for (int j = 0; j < 5; j++)

{

int k = i % 36;

char c;

if (k < 10)

{

c = (char) (48 + k);

}

else

{

c = (char) ((65 + k) - 10);

}

sb.append(c);

i /= 36;

}

return sb.toString();

}

/**

* @param name

* @param days

* @param id

* @param prtype

* @return

*/

public static String MakeKey(String name, int days, int id)

{

id %= 100000;

byte bkey[] = new byte[12];

bkey[0] = (byte) 1; // Product type: IntelliJ IDEA is 1

bkey[1] = 14; // version

Date d = new Date();

long ld = (d.getTime() >> 16);

bkey[2] = (byte) (ld & 255);

bkey[3] = (byte) ((ld >> 8) & 255);

bkey[4] = (byte) ((ld >> 16) & 255);

bkey[5] = (byte) ((ld >> 24) & 255);

days &= 0xffff;

bkey[6] = (byte) (days & 255);

bkey[7] = (byte) ((days >> 8) & 255);

bkey[8] = 105;

bkey[9] = -59;

bkey[10] = 0;

bkey[11] = 0;

int w = getCRC(name, id % 100000, bkey);

bkey[10] = (byte) (w & 255);

bkey[11] = (byte) ((w >> 8) & 255);

BigInteger pow = new BigInteger("89126272330128007543578052027888001981", 10);

BigInteger mod = new BigInteger("86f71688cdd2612ca117d1f54bdae029", 16);

BigInteger k0 = new BigInteger(bkey);

BigInteger k1 = k0.modPow(pow, mod);

String s0 = Integer.toString(id);

String sz = "0";

while (s0.length() != 5)

{

s0 = sz.concat(s0);

}

s0 = s0.concat("-");

String s1 = encodeGroups(k1);

s0 = s0.concat(s1);

return s0;

}

public static void main(String[] args)

{

if (args.length == 0)

{

System.err.printf("*** Usage: %s name%n", keygen.class.getCanonicalName());

System.exit(1);

}

Random r = new Random();

System.out.println(MakeKey(args[0], 0, r.nextInt(100000)));

}

}

Intellij IDEA Ultimate Edition 14.1 破解的更多相关文章

  1. 关于 Intellij IDEA Ultimate Edition 14.1控制台中文乱码 解决

    经过尝试,我发现,乱码主要是跟控制台右下角的编码有关  如下图 当然IDE Encoding 和 Project Encoding 你可以都设置位UTF-8 或者都设置为GBK    如下图:

  2. IntelliJ IDEA Community Edition 14.1.4下使用 Apache-Subversion搭建代码管理环境

    当前我的idea 版本是14.1.4. 1,)SVN Server下载与安装(https://www.visualsvn.com/server/): 因为我开发机是x64的,所以我优先下载 x64的 ...

  3. JetBrains IntelliJ IDEA 15 Ultimate Edition版本激活破解

        由于JetBrains系列新版本注册激活发生了变化,所以原来的激活方式已经不能在使用. 只能用新的方式来破解了.此方式支持所有系列的新版版.包括IDEA15,PHPSTORM10,WEBSTO ...

  4. IntelliJ IDEA Community Edition 14.1.4下 javafx scenebuilder的使用

    官网对应的配置文档:https://www.jetbrains.com/idea/help/preparing-for-javafx-application-development.html Java ...

  5. JetBrains IntelliJ IDEA for Mac 15.0 破解版 – Mac 上强大的 Java 集成开发工具

    应网友要求更新. IntelliJ IDEA 是最强大的 Java IDE 之一,由知名的Jetbrainsg公司出品,最新版本增加了大量强大易用的特性,比如 Java 8 的Lambda 表达式调试 ...

  6. IntelliJ IDEA Ultimate 下载与安装

    一.下载 Intellij IDEA Ultimate 下载链接:https://www.jetbrains.com/idea/download/#section=windows 1.进入官网点击Ul ...

  7. IntelliJ IDEA下载及安装,破解

    IntelliJ IDEA下载及安装,破解 百度百科:IDEA 全称IntelliJ IDEA,是java语言开发的集成环境,IntelliJ在业界被公认为最好的java开发工具之一,尤其在智能代码助 ...

  8. IntelliJ IDEA 2019.1.3 最新破解教程【最强 可用至2099年】

    本文包括最新[2019.1.2]安装 和[2018.3.2](推荐)安装 ①IntelliJ IDEA 2018.3.2安装永久安装[最强]  一. 在官网下载IDEA安装包  链接:https:// ...

  9. IntelliJ IDEA2018.2.7安装和破解教程

    一.安装 IntelliJ IDEA2018.2.7 IDEA官网下载地址链接:https://www.jetbrains.com/idea/download/previous.html 1.进入网站 ...

随机推荐

  1. javascirpt 用英文逗号替换英文分号、中英文逗号或者回车

    function ReplaceSeperator(mobiles) { var i; var result = ""; var c; for (i = 0; i < mob ...

  2. GNU Linux高并发性能优化方案

    /*********************************************************** * Author : Samson * Date : 07/14/2015 * ...

  3. [svc][bg]phabricator-zh_CN汉化包

    汉化phabricator审计系统 主要是用来审计一些开发bug的,客服会提交一些bug,测试也会提交一些bug给开发. https://github.com/wanthings/phabricato ...

  4. RTFSC-afinal框架[一]

    RTFSC-afinal框架   finalActivity模块 : android中的ioc框架,完全注解方式就可以进行UI绑定和事件绑定.无需findViewById和setClickListen ...

  5. Redis-ha(sentinel)

    redis的sendtinel 是用来管理多个redis服务器的 作用 • 监控:监控主从服务器是否运作正常(通过给服务器发送心跳包的方式)    • 提醒:当某个Redis服务器出现异常时,可以通过 ...

  6. 线程的sleep()方法和yield()方法有什么区别?

    1.sleep()方法给其他线程运行机会时不考虑线程的优先级,因此会给低优先级的线程以运行的机会 2.yield()方法只会给相同优先级或更高优先级的线程以运行的机会 3.线程执行sleep()方法后 ...

  7. ORACLE建立物化视图

    --使用 on commit 的方式建立物化视图 create materialized view emp_dept refresh on commit as select t.*,d.dname f ...

  8. Linux上安装Nginx及常用命令

    一.Linux安装软件常用方法 1.rpm(或pkg)安装,类似于Windows安装程序,是预编译好的程序. 1)使用的是通用参数编译,配置参数不是最佳 2)可控制性不强,比如对程序特定组件的定制性安 ...

  9. c# 将html添加进剪贴板(带格式)

    调用: ClipboardHelper.CopyToClipboard("<h1>hello world</h1>", ""); /// ...

  10. vc6项目-vc8项目 转换日志

    此随笔参考了http://blog.163.com/feng_qihang/blog/static/7129199120093422722430/ 把VC6的项目转换成VS2005项目,经过VS200 ...