EditPlus Registration code Generator (JS code implementation) _javascript tips

Source: Internet
Author: User
Tags generator
Today, my colleague was surprised to tell me that I found an online EditPlus registration code generator, and I hurried to look at it, and really, here.
EXE registration machine virus too many, pure JS online registration machine can be relieved.

The author is from other people's registration machine disassembly and then find the algorithm, but also to my surprise, this author Demon unexpectedly is engaged in law, just get the legal professional qualification certificate, admire.


One of the main JS functions is this:
Copy Code code as follows:

function Generate_editplus_regcode (username) {
var list = [ 0,49345,49537,320,49921,960,640,49729,50689,1728,1920,51009,1280,50625,50305,1088,52225,3264,3456,52545,3840,53185,52865 , 3648,2560,51905,52097,2880,51457,2496,2176,51265,55297,6336,6528,55617,6912,56257,55937,6720,7680,57025,57217,8000,56577 , 7616,7296,56385,5120,54465,54657,5440,55041,6080,5760,54849,53761,4800,4992,54081,4352,53697,53377,4160,61441,12480,1267 2,61761,13056,62401,62081,12864,13824,63169,63361,14144,62721,13760,13440,62529,15360,64705,64897,15680,65281,16320,16000 , 65089,64001,15040,15232,64321,14592,63937,63617,14400,10240,59585,59777,10560,60161,11200,10880,59969,60929,11968,12160 , 61249,11520,60865,60545,11328,58369,9408,9600,58689,9984,59329,59009,9792,8704,58049,58241,9024,57601,8640,8320,57409,40 961,24768,24960,41281,25344,41921,41601,25152,26112,42689,42881,26432,42241,26048,25728,42049,27648,44225,44417,27968,448 01,28608,28288,44609,43521,27328,27520,43841,26880,43457,43137,26688,30720,47297,47489,31040,47873,31680,31360,47681,4864 1,32448,32640,48961,32000,48577,48257,31808,46081,29888,30080,46401,30464,47041,46721,30272,29184,45761,45953,29504,45313,29120,28800,45121,204 80,37057,37249,20800,37633,21440,21120,37441,38401,22208,22400,38721,21760,38337,38017,21568,39937,23744,23936,40257,2432 0,40897,40577,24128,23040,39617,39809,23360,39169,22976,22656,38977,34817,18624,18816,35137,19200,35777,35457,19008,19968 , 36545,36737,20288,36097,19904,19584,35905,17408,33985,34177,17728,34561,18368,18048,34369,33281,17088,17280,33601,16640 , 33217,32897,16448];
var hexchars = [' 0 ', ' 1 ', ' 2 ', ' 3 ', ' 4 ', ' 5 ', ' 6 ', ' 7 ', ' 8 ', ' 9 ', ' A ', ' B ', ' C ', ' D ', ' E ', ' F ';
var regcode = new Array (29);
var i = 0, j = 0, k = 0;
var len, temp, sum, result;
Username = usernamereplace (/^\s+|\s+$/g, "");
for (i = 0;i < 5;i++,k++)
{
for (j = 0;j < 5;j++,k++)
{
Regcode[k] = Hexchars[parseint (Mathrandom () * 16)];
}
if (k = =) break;
REGCODE[K] = '-';
}
len = usernamelength;
sum = 1;
for (i = 0;i < len;i++) {
Sum + + usernamecharcodeat (i);
}
temp = (parseint (sum + 23)/6) + 3) * 7% 16;
REGCODE[6] = hexchars[temp & 0xF];
sum = 1;
for (i = 0;i < len;i++) {
Sum + + usernamecharcodeat (i);
}
temp = parseint ((3 * sum + 39)/8)% 16;
REGCODE[9] = hexchars[temp & 0xF];
sum = 1;
for (i = 0;i < len;i++) {
Sum + + usernamecharcodeat (i);
}
temp = parseint ((3 * sum + 19)/9)% 16;
REGCODE[7] = hexchars[temp & 0xF];
sum = 1;
for (i = 0;i < len;i++) {
Sum + + usernamecharcodeat (i);
}
temp = parseint ((sum + 10)/3) * 8% 16;
REGCODE[10] = hexchars[temp & 0xF];
sum = 1;
for (i = 0;i < len;i++) {
Sum + + usernamecharcodeat (i);
}
temp = (parseint (9 * sum + 10)/3) + 36)% 16;
REGCODE[4] = hexchars[temp & 0xF];
sum = 1;
for (i = 0;i < len;i++) {
Sum + + usernamecharcodeat (i);
}
temp = parseint ((5 * sum + 11)/5)% 16;
REGCODE[8] = hexchars[temp & 0xF];
result = 0;
for (i = 0;i < len;i++) {
result = (Result >> 8) & 0xFF) ^ list[usernamecharcodeat (i) ^ (Result & 0xFF)];
}
result = Resulttostring () touppercase ();
REGCODE[2] = Resultcharat (0);
REGCODE[3] = Resultcharat (1);
len = regcodelength;
result = 0;
for (i = 2;i < len;i++) {
result = (Result >> 8) & 0xFF) ^ list[regcode[i]tostring () charcodeat (0) ^ (Result & 0xFF)];
}
result = Resulttostring () touppercase ();
Regcode[0] = Resultcharat (0);
REGCODE[1] = Resultcharat (1);
Return Regcodejoin ("");
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.