This commit is contained in:
Andrew 2023-04-12 18:51:29 +03:00
parent 70e2c6fbfd
commit 0e59a27825
13 changed files with 608 additions and 411 deletions

View File

@ -171,6 +171,8 @@
<Image Include="resources\ender.bmp" /> <Image Include="resources\ender.bmp" />
<Image Include="resources\icon.ico" /> <Image Include="resources\icon.ico" />
<Image Include="resources\logo.bmp" /> <Image Include="resources\logo.bmp" />
<Image Include="resources\musicoff.bmp" />
<Image Include="resources\musicon.bmp" />
</ItemGroup> </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets"> <ImportGroup Label="ExtensionTargets">

View File

@ -45,5 +45,7 @@
<Image Include="resources\icon.ico" /> <Image Include="resources\icon.ico" />
<Image Include="resources\ender.bmp" /> <Image Include="resources\ender.bmp" />
<Image Include="resources\logo.bmp" /> <Image Include="resources\logo.bmp" />
<Image Include="resources\musicon.bmp" />
<Image Include="resources\musicoff.bmp" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -39,6 +39,7 @@
#define IDC_INPUT2 1021 #define IDC_INPUT2 1021
#define IDC_IMAGE1 1050 #define IDC_IMAGE1 1050
#define IDC_IMAGE2 1051
#define IDC_LABEL1 1055 #define IDC_LABEL1 1055
#define IDC_LABEL2 1056 #define IDC_LABEL2 1056
@ -58,10 +59,8 @@ extern const long aXP;
extern const long bXP; extern const long bXP;
// xp.cpp // xp.cpp
int keyXP( bool keyXP(
char *pKey, char *pKey,
ul32 *hash,
ul32 *sig,
ul32 nRaw ul32 nRaw
); );
@ -70,39 +69,43 @@ void unpackXP(
ul32 *hash, ul32 *hash,
ul32 *sig, ul32 *sig,
ul32 *raw ul32 *raw
); );
void packXP( void packXP(
ul32 *raw, ul32 *raw,
ul32 *serial, ul32 *serial,
ul32 *hash, ul32 *hash,
ul32 *sig ul32 *sig
); );
void verifyXPKey( bool verifyXPKey(
EC_GROUP *eCurve, EC_GROUP *eCurve,
EC_POINT *generator, EC_POINT *generator,
EC_POINT *publicKey, EC_POINT *publicKey,
char *cdKey char *cdKey
); );
void generateXPKey( void generateXPKey(
byte *pKey, char *pKey,
EC_GROUP *eCurve, EC_GROUP *eCurve,
EC_POINT *generator, EC_POINT *generator,
BIGNUM *order, BIGNUM *order,
BIGNUM *privateKey, BIGNUM *privateKey,
ul32 *pRaw ul32 *pRaw
); );
// server.cpp // server.cpp
bool keyServer(
char *pKey
);
void unpackServer( void unpackServer(
ul32 *osFamily, ul32 *osFamily,
ul32 *hash, ul32 *hash,
ul32 *sig, ul32 *sig,
ul32 *prefix, ul32 *prefix,
ul32 *raw ul32 *raw
); );
void packServer( void packServer(
ul32 *raw, ul32 *raw,
@ -110,24 +113,24 @@ void packServer(
ul32 *hash, ul32 *hash,
ul32 *sig, ul32 *sig,
ul32 *prefix ul32 *prefix
); );
void verifyServerKey( bool verifyServerKey(
EC_GROUP *eCurve, EC_GROUP *eCurve,
EC_POINT *generator, EC_POINT *generator,
EC_POINT *public_key, EC_POINT *public_key,
char *cdKey char *cdKey
); );
void generateServerKey( void generateServerKey(
byte *pKey, char *pKey,
EC_GROUP *eCurve, EC_GROUP *eCurve,
EC_POINT *generator, EC_POINT *generator,
BIGNUM *order, BIGNUM *order,
BIGNUM *privateKey, BIGNUM *privateKey,
ul32 *osFamily, ul32 *osFamily,
ul32 *prefix ul32 *prefix
); );
// utilities.cpp // utilities.cpp
void cprintf(const char *Format, int nColor, ...); void cprintf(const char *Format, int nColor, ...);
@ -149,8 +152,8 @@ EC_GROUP *initializeEllipticCurve(
); );
// key.cpp // key.cpp
void unbase24(ul32 *byteSeq, byte *cdKey); void unbase24(ul32 *byteSeq, const char *cdKey);
void base24(byte *cdKey, ul32 *byteSeq); void base24(char *cdKey, ul32 *byteSeq);
void printProductKey(const char *pKey); void printProductKey(const char *pKey);
void printProductID(const ul32 *pRaw); void printProductID(const ul32 *pRaw);

34
key.cpp
View File

@ -5,7 +5,7 @@
#include "header.h" #include "header.h"
/* Convert from byte sequence to the CD-key. */ /* Convert from byte sequence to the CD-key. */
void base24(byte *cdKey, ul32 *byteSeq) { void base24(char *cdKey, ul32 *byteSeq) {
byte rbs[16]; byte rbs[16];
BIGNUM *z; BIGNUM *z;
@ -31,39 +31,51 @@ void base24(byte *cdKey, ul32 *byteSeq) {
} }
/* Convert from CD-key to a byte sequence. */ /* Convert from CD-key to a byte sequence. */
void unbase24(ul32 *byteSeq, byte *cdKey) { void unbase24(ul32 *byteSeq, const char *cdKey) {
byte pDecodedKey[PK_LENGTH + NULL_TERMINATOR]{};
BIGNUM *y = BN_new(); BIGNUM *y = BN_new();
BN_zero(y); BN_zero(y);
// Remove dashes from the CD-key and put it into a Base24 byte array.
for (int i = 0, k = 0; i < strlen(cdKey) && k < PK_LENGTH; i++) {
for (int j = 0; j < 24; j++) {
if (cdKey[i] != '-' && cdKey[i] == charset[j]) {
pDecodedKey[k++] = j;
break;
}
}
}
// Empty byte sequence. // Empty byte sequence.
memset(byteSeq, 0, 16); memset(byteSeq, 0, 16);
// For each character in product key, place its ASCII-code. // Calculate the weighed sum of byte array elements.
for (int i = 0; i < 25; i++) { for (int i = 0; i < PK_LENGTH; i++) {
BN_mul_word(y, 24); BN_mul_word(y, PK_LENGTH - 1);
BN_add_word(y, cdKey[i]); BN_add_word(y, pDecodedKey[i]);
} }
// Acquire length. // Acquire length.
int n = BN_num_bytes(y); int n = BN_num_bytes(y);
// Place the generated code into the byte sequence. // Place the generated code into the byte sequence.
BN_bn2bin(y, (unsigned char *)byteSeq); BN_bn2bin(y, (byte *)byteSeq);
BN_free(y); BN_free(y);
// Reverse the byte sequence. // Reverse the byte sequence.
endiannessConvert((unsigned char *) byteSeq, n); endiannessConvert((byte *) byteSeq, n);
} }
/* Print Product Key. */ /* Print Product Key. */
void printProductKey(const char *pKey) { void printProductKey(const char *pKey) {
assert(strlen((const char *)pKey) == 25); assert(strlen(pKey) == 25);
SetConsoleTextAttribute(hConsole, 0x0A); SetConsoleTextAttribute(hConsole, 0x0A);
for (int i = 0; i < 25; i++) { for (int i = 0; i < PK_LENGTH; i++) {
putchar(pKey[i]); putchar(pKey[i]);
if (i != 24 && i % 5 == 4) putchar('-'); if (i != PK_LENGTH - 1 && i % 5 == 4) putchar('-');
} }
SetConsoleTextAttribute(hConsole, 0x0F); SetConsoleTextAttribute(hConsole, 0x0F);

View File

@ -9,80 +9,6 @@ HANDLE hConsole;
ul32 dwSeed; ul32 dwSeed;
byte charset[] = "BCDFGHJKMPQRTVWXY2346789"; byte charset[] = "BCDFGHJKMPQRTVWXY2346789";
int mainServer() {
BIGNUM *a, *b, *p, *generatorX, *generatorY, *publicKeyX, *publicKeyY, *genOrder, *privateKey;
BN_CTX *context = BN_CTX_new();
a = BN_new();
b = BN_new();
p = BN_new();
generatorX = BN_new();
generatorY = BN_new();
publicKeyX = BN_new();
publicKeyY = BN_new();
genOrder = BN_new();
privateKey = BN_new();
/* Public data */
// Data taken from pidgen.dll BINK-resources
BN_hex2bn(&p, "C9AE7AED19F6A7E100AADE98134111AD8118E59B8264734327940064BC675A0C682E19C89695FBFA3A4653E47D47FD7592258C7E3C3C61BBEA07FE5A7E842379");
BN_set_word(a, 1);
BN_set_word(b, 0);
// Base point G (Generator)
BN_hex2bn(&generatorX, "85ACEC9F9F9B456A78E43C3637DC88D21F977A9EC15E5225BD5060CE5B892F24FEDEE574BF5801F06BC232EEF2161074496613698D88FAC4B397CE3B475406A7");
BN_hex2bn(&generatorY, "66B7D1983F5D4FE43E8B4F1E28685DE0E22BBE6576A1A6B86C67533BF72FD3D082DBA281A556A16E593DB522942C8DD7120BA50C9413DF944E7258BDDF30B3C4");
// Inverse of the public key
BN_hex2bn(&publicKeyX, "90BF6BD980C536A8DB93B52AA9AEBA640BABF1D31BEC7AA345BB7510194A9B07379F552DA7B4A3EF81A9B87E0B85B5118E1E20A098641EE4CCF2045558C98C0E");
BN_hex2bn(&publicKeyY, "6B87D1E658D03868362945CDD582E2CF33EE4BA06369E0EFE9E4851F6DCBEC7F15081E250D171EA0CC4CB06435BCFCFEA8F438C9766743A06CBD06E7EFB4C3AE");
/* Computed data */
// Order of G <- from MSKey 4-in-1
BN_hex2bn(&genOrder, "4CC5C56529F0237D");
// Computed private key
BN_hex2bn(&privateKey, "2606120F59C05118");
/* Elliptical Curve calculations. */
// The group is defined via Fp = all integers [0; p - 1], where p is prime.
// The function EC_POINT_set_affine_coordinates() sets the x and y coordinates for the point p defined over the curve given in group.
EC_GROUP *eCurve = EC_GROUP_new_curve_GFp(p, a, b, context);
// Create new point for the generator on the elliptic curve and set its coordinates to (genX; genY).
EC_POINT *genPoint = EC_POINT_new(eCurve);
EC_POINT_set_affine_coordinates(eCurve, genPoint, generatorX, generatorY, context);
// Create new point for the public key on the elliptic curve and set its coordinates to (pubX; pubY).
EC_POINT *pubPoint = EC_POINT_new(eCurve);
EC_POINT_set_affine_coordinates(eCurve, pubPoint, publicKeyX, publicKeyY, context);
// If generator and public key points are not on the elliptic curve, either the generator or the public key values are incorrect.
assert(EC_POINT_is_on_curve(eCurve, genPoint, context) == 1);
assert(EC_POINT_is_on_curve(eCurve, pubPoint, context) == 1);
char pkey[25]{};
ul32 osfamily[1], prefix[1];
osfamily[0] = 1280;
RAND_bytes((byte *)prefix, 4);
prefix[0] &= 0x3ff;
generateServerKey((byte *)pkey, eCurve, genPoint, genOrder, privateKey, osfamily, prefix);
printProductKey(pkey);
printf("\n\n");
verifyServerKey(eCurve, genPoint, pubPoint, (char *) pkey);
BN_CTX_free(context);
return 0;
}
/* /*
* PK: VX8CG-8KC6V-PVPMD-GKPPH-GC7W8 * PK: VX8CG-8KC6V-PVPMD-GKPPH-GC7W8
* *

View File

@ -6,12 +6,14 @@
#define IDR_WAVE1 102 #define IDR_WAVE1 102
#define IDB_BITMAP1 103 #define IDB_BITMAP1 103
#define IDB_BITMAP2 104 #define IDB_BITMAP2 104
#define IDB_BITMAP3 105
#define IDB_BITMAP4 106
// Next default values for new objects // Next default values for new objects
// //
#ifdef APSTUDIO_INVOKED #ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS #ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 105 #define _APS_NEXT_RESOURCE_VALUE 107
#define _APS_NEXT_COMMAND_VALUE 40001 #define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1001 #define _APS_NEXT_CONTROL_VALUE 1001
#define _APS_NEXT_SYMED_VALUE 101 #define _APS_NEXT_SYMED_VALUE 101

Binary file not shown.

BIN
resources/musicoff.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
resources/musicon.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -4,11 +4,32 @@
#include "header.h" #include "header.h"
const char pSv[] = "C9AE7AED19F6A7E100AADE98134111AD8118E59B8264734327940064BC675A0C682E19C89695FBFA3A4653E47D47FD7592258C7E3C3C61BBEA07FE5A7E842379";
const long aSv = 1;
const long bSv = 0;
// Base point G (Generator)
const char genXSv[] = "85ACEC9F9F9B456A78E43C3637DC88D21F977A9EC15E5225BD5060CE5B892F24FEDEE574BF5801F06BC232EEF2161074496613698D88FAC4B397CE3B475406A7";
const char genYSv[] = "66B7D1983F5D4FE43E8B4F1E28685DE0E22BBE6576A1A6B86C67533BF72FD3D082DBA281A556A16E593DB522942C8DD7120BA50C9413DF944E7258BDDF30B3C4";
// Inverse of the public key
const char pubXSv[] = "90BF6BD980C536A8DB93B52AA9AEBA640BABF1D31BEC7AA345BB7510194A9B07379F552DA7B4A3EF81A9B87E0B85B5118E1E20A098641EE4CCF2045558C98C0E";
const char pubYSv[] = "6B87D1E658D03868362945CDD582E2CF33EE4BA06369E0EFE9E4851F6DCBEC7F15081E250D171EA0CC4CB06435BCFCFEA8F438C9766743A06CBD06E7EFB4C3AE";
// Order of G <- from MSKey 4-in-1
const char genOrderSv[] = "4CC5C56529F0237D";
// Computed private key
const char privateKeySv[] = "2606120F59C05118";
void unpackServer(ul32 *osFamily, ul32 *hash, ul32 *sig, ul32 *prefix, ul32 *raw) { void unpackServer(ul32 *osFamily, ul32 *hash, ul32 *sig, ul32 *prefix, ul32 *raw) {
osFamily[0] = raw[0] & 0x7ff; osFamily[0] = raw[0] & 0x7ff;
hash[0] = ((raw[0] >> 11) | (raw[1] << 21)) & 0x7fffffff; hash[0] = ((raw[0] >> 11) | (raw[1] << 21)) & 0x7fffffff;
sig[0] = (raw[1] >> 10) | (raw[2] << 22); sig[0] = (raw[1] >> 10) | (raw[2] << 22);
sig[1] = ((raw[2] >> 10) | (raw[3] << 22)) & 0x3fffffff; sig[1] = ((raw[2] >> 10) | (raw[3] << 22)) & 0x3fffffff;
prefix[0] = (raw[3] >> 8) & 0x3ff; prefix[0] = (raw[3] >> 8) & 0x3ff;
} }
@ -19,26 +40,14 @@ void packServer(ul32 *raw, ul32 *osFamily, ul32 *hash, ul32 *sig, ul32 *prefix)
raw[3] = (sig[1] >> 22) | (prefix[0] << 8); raw[3] = (sig[1] >> 22) | (prefix[0] << 8);
} }
void verifyServerKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *public_key, char *cdKey) { bool verifyServerKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *public_key, char *cdKey) {
byte key[25];
int i, j, k; int i, j, k;
BN_CTX *ctx = BN_CTX_new(); BN_CTX *ctx = BN_CTX_new();
for (i = 0, k = 0; i < strlen(cdKey); i++) {
for (j = 0; j < 24; j++) {
if (cdKey[i] != '-' && cdKey[i] == charset[j]) {
key[k++] = j;
break;
}
assert(j < 24);
}
if (k >= 25) break;
}
ul32 bkey[4] = {0}; ul32 bkey[4] = {0};
ul32 osfamily[1], hash[1], sig[2], prefix[1]; ul32 osfamily[1], hash[1], sig[2], prefix[1];
unbase24(bkey, key); unbase24(bkey, cdKey);
printf("%.8x %.8x %.8x %.8x\n", bkey[3], bkey[2], bkey[1], bkey[0]); printf("%.8x %.8x %.8x %.8x\n", bkey[3], bkey[2], bkey[1], bkey[0]);
unpackServer(osfamily, hash, sig, prefix, bkey); unpackServer(osfamily, hash, sig, prefix, bkey);
@ -72,16 +81,16 @@ void verifyServerKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *public_key
y = BN_new(); y = BN_new();
endiannessConvert((byte *) sig, 8); endiannessConvert((byte *) sig, 8);
endiannessConvert((byte *) h1, 8); endiannessConvert((byte *) h1, 8);
s = BN_bin2bn((byte *)sig, 8, NULL); s = BN_bin2bn((byte *)sig, 8, nullptr);
h = BN_bin2bn((byte *)h1, 8, NULL); h = BN_bin2bn((byte *)h1, 8, nullptr);
EC_POINT *r = EC_POINT_new(eCurve); EC_POINT *r = EC_POINT_new(eCurve);
EC_POINT *t = EC_POINT_new(eCurve); EC_POINT *t = EC_POINT_new(eCurve);
/* r = sig*(sig*generator + h1*public_key) */ /* r = sig*(sig*generator + h1*public_key) */
EC_POINT_mul(eCurve, t, NULL, generator, s, ctx); EC_POINT_mul(eCurve, t, nullptr, generator, s, ctx);
EC_POINT_mul(eCurve, r, NULL, public_key, h, ctx); EC_POINT_mul(eCurve, r, nullptr, public_key, h, ctx);
EC_POINT_add(eCurve, r, r, t, ctx); EC_POINT_add(eCurve, r, r, t, ctx);
EC_POINT_mul(eCurve, r, NULL, r, s, ctx); EC_POINT_mul(eCurve, r, nullptr, r, s, ctx);
EC_POINT_get_affine_coordinates_GFp(eCurve, r, x, y, ctx); EC_POINT_get_affine_coordinates_GFp(eCurve, r, x, y, ctx);
ul32 h2[1]; ul32 h2[1];
@ -106,9 +115,6 @@ void verifyServerKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *public_key
h2[0] = (md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24)) & 0x7fffffff; h2[0] = (md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24)) & 0x7fffffff;
printf("Calculated hash: %.8x\n", h2[0]); printf("Calculated hash: %.8x\n", h2[0]);
if (h2[0] == hash[0]) printf("Key VALID\n");
else printf("Key invalid\n");
BN_free(s); BN_free(s);
BN_free(h); BN_free(h);
BN_free(x); BN_free(x);
@ -116,65 +122,87 @@ void verifyServerKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *public_key
EC_POINT_free(r); EC_POINT_free(r);
EC_POINT_free(t); EC_POINT_free(t);
BN_CTX_free(ctx); BN_CTX_free(ctx);
if (h2[0] == hash[0]) return true;
else return false;
} }
void generateServerKey(byte *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM *order, BIGNUM *privateKey, ul32 *osFamily, ul32 *prefix) { void generateServerKey(char *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM *order, BIGNUM *privateKey, ul32 *osFamily, ul32 *prefix) {
BN_CTX *ctx = BN_CTX_new(); BN_CTX *ctx = BN_CTX_new();
BIGNUM *k = BN_new(); BIGNUM *c = BN_new();
BIGNUM *s = BN_new(); BIGNUM *s = BN_new();
BIGNUM *x = BN_new(); BIGNUM *x = BN_new();
BIGNUM *y = BN_new(); BIGNUM *y = BN_new();
BIGNUM *b = BN_new(); BIGNUM *b = BN_new();
EC_POINT *r = EC_POINT_new(eCurve); EC_POINT *r = EC_POINT_new(eCurve);
ul32 bkey[4]; ul32 bKey[4];
byte buf[FIELD_BYTES_2003], md[20];
ul32 h1[2]; ul32 h1[2];
ul32 hash[1], sig[2];
SHA_CTX h_ctx; do {
ul32 hash = 0, sig[2]{};
for (;;) { memset(bKey, 0, 4);
/* r = k*generator */
BN_rand(k, FIELD_BITS_2003, -1, 0); // Generate a random number c consisting of 512 bits without any constraints.
EC_POINT_mul(eCurve, r, NULL, generator, k, ctx); BN_rand(c, FIELD_BITS_2003, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY);
// r = generator * c
EC_POINT_mul(eCurve, r, nullptr, generator, c, ctx);
// x = r.x; y = r.y;
EC_POINT_get_affine_coordinates(eCurve, r, x, y, ctx); EC_POINT_get_affine_coordinates(eCurve, r, x, y, ctx);
/* hash = SHA-1(79 || OS Family || r.x || r.y) */ SHA_CTX hContext;
SHA1_Init(&h_ctx); byte md[SHA_DIGEST_LENGTH]{}, buf[FIELD_BYTES_2003]{};
// hash = SHA-1(79 || OS Family || r.x || r.y)
SHA1_Init(&hContext);
buf[0] = 0x79; buf[0] = 0x79;
buf[1] = osFamily[0] & 0xff;
buf[2] = (osFamily[0] & 0xff00) >> 8; buf[1] = (*osFamily & 0xff);
SHA1_Update(&h_ctx, buf, 3); buf[2] = (*osFamily & 0xff00) >> 8;
SHA1_Update(&hContext, buf, 3);
memset(buf, 0, FIELD_BYTES_2003); memset(buf, 0, FIELD_BYTES_2003);
BN_bn2bin(x, buf); BN_bn2bin(x, buf);
endiannessConvert((byte *) buf, FIELD_BYTES_2003); endiannessConvert((byte *) buf, FIELD_BYTES_2003);
SHA1_Update(&h_ctx, buf, FIELD_BYTES_2003); SHA1_Update(&hContext, buf, FIELD_BYTES_2003);
memset(buf, 0, FIELD_BYTES_2003); memset(buf, 0, FIELD_BYTES_2003);
BN_bn2bin(y, buf); BN_bn2bin(y, buf);
endiannessConvert((byte *) buf, FIELD_BYTES_2003); endiannessConvert((byte *) buf, FIELD_BYTES_2003);
SHA1_Update(&h_ctx, buf, FIELD_BYTES_2003);
SHA1_Final(md, &h_ctx); SHA1_Update(&hContext, buf, FIELD_BYTES_2003);
hash[0] = (md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24)) & 0x7fffffff; SHA1_Final(md, &hContext);
hash = (md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24)) & 0x7fffffff;
/* h1 = SHA-1(5D || OS Family || Hash || Prefix || 00 00) */ /* h1 = SHA-1(5D || OS Family || Hash || Prefix || 00 00) */
SHA1_Init(&h_ctx); SHA1_Init(&hContext);
buf[0] = 0x5d; buf[0] = 0x5D;
buf[1] = osFamily[0] & 0xff;
buf[2] = (osFamily[0] & 0xff00) >> 8; buf[1] = (*osFamily & 0xff);
buf[3] = hash[0] & 0xff; buf[2] = (*osFamily & 0xff00) >> 8;
buf[4] = (hash[0] & 0xff00) >> 8;
buf[5] = (hash[0] & 0xff0000) >> 16; buf[3] = (hash & 0xff);
buf[6] = (hash[0] & 0xff000000) >> 24; buf[4] = (hash & 0xff00) >> 8;
buf[5] = (hash & 0xff0000) >> 16;
buf[6] = (hash & 0xff000000) >> 24;
buf[7] = prefix[0] & 0xff; buf[7] = prefix[0] & 0xff;
buf[8] = (prefix[0] & 0xff00) >> 8; buf[8] = (prefix[0] & 0xff00) >> 8;
buf[9] = buf[10] = 0;
SHA1_Update(&h_ctx, buf, 11); buf[9] = 0x00;
SHA1_Final(md, &h_ctx); buf[10] = 0x00;
SHA1_Update(&hContext, buf, 11);
SHA1_Final(md, &hContext);
h1[0] = md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24); h1[0] = md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24);
h1[1] = (md[4] | (md[5] << 8) | (md[6] << 16) | (md[7] << 24)) >> 2; h1[1] = (md[4] | (md[5] << 8) | (md[6] << 16) | (md[7] << 24)) >> 2;
h1[1] &= 0x3FFFFFFF; h1[1] &= 0x3FFFFFFF;
@ -186,8 +214,8 @@ void generateServerKey(byte *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM
BN_mod_mul(b, b, privateKey, order, ctx); BN_mod_mul(b, b, privateKey, order, ctx);
BN_copy(s, b); BN_copy(s, b);
BN_mod_sqr(s, s, order, ctx); BN_mod_sqr(s, s, order, ctx);
BN_lshift(k, k, 2); BN_lshift(c, c, 2);
BN_add(s, s, k); BN_add(s, s, c);
BN_mod_sqrt(s, s, order, ctx); BN_mod_sqrt(s, s, order, ctx);
BN_mod_sub(s, s, b, order, ctx); BN_mod_sub(s, s, b, order, ctx);
if (BN_is_odd(s)) { if (BN_is_odd(s)) {
@ -196,21 +224,64 @@ void generateServerKey(byte *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM
BN_rshift1(s, s); BN_rshift1(s, s);
sig[0] = sig[1] = 0; sig[0] = sig[1] = 0;
BN_bn2bin(s, (byte *)sig); BN_bn2bin(s, (byte *)sig);
endiannessConvert((byte *) sig, BN_num_bytes(s)); endiannessConvert((byte *)sig, BN_num_bytes(s));
if (sig[1] < 0x40000000) break; packServer(bKey, osFamily, &hash, sig, prefix);
}
packServer(bkey, osFamily, hash, sig, prefix);
printf("OS family: %u\nHash: %.8x\nSig: %.8x %.8x\nPrefix: %.8x\n", osFamily[0], hash[0], sig[1], sig[0], prefix[0]);
printf("%.8x %.8x %.8x %.8x\n", bkey[3], bkey[2], bkey[1], bkey[0]);
base24(pKey, bkey);
BN_free(k); printf("OS family: %u\nHash: %.8x\nSig: %.8x %.8x\nPrefix: %.8x\n", *osFamily, hash, sig[1], sig[0], *prefix);
printf("%.8x %.8x %.8x %.8x\n", bKey[3], bKey[2], bKey[1], bKey[0]);
} while (bKey[3] >= 0x40000000);
base24(pKey, bKey);
BN_free(c);
BN_free(s); BN_free(s);
BN_free(x); BN_free(x);
BN_free(y); BN_free(y);
BN_free(b); BN_free(b);
EC_POINT_free(r);
BN_CTX_free(ctx); BN_CTX_free(ctx);
EC_POINT_free(r);
}
bool keyServer(char *pKey) {
// We cannot produce a valid key without knowing the private key k. The reason for this is that
// we need the result of the function K(x; y) = kG(x; y).
BIGNUM *privateKey = BN_new();
// We can, however, validate any given key using the available public key: {p, a, b, G, K}.
// genOrder the order of the generator G, a value we have to reverse -> Schoof's Algorithm.
BIGNUM *genOrder = BN_new();
/* Computed data */
BN_hex2bn(&genOrder, genOrderSv);
BN_hex2bn(&privateKey, privateKeySv);
EC_POINT *genPoint, *pubPoint;
EC_GROUP *eCurve = initializeEllipticCurve(
pSv,
aSv,
bSv,
genXSv,
genYSv,
pubXSv,
pubYSv,
genOrder,
privateKey,
&genPoint,
&pubPoint
);
ul32 osFamily = 1280, prefix = 0;
RAND_bytes((byte *)&prefix, 4);
prefix &= 0x3ff;
generateServerKey(pKey, eCurve, genPoint, genOrder, privateKey, &osFamily, &prefix);
printProductKey(pKey);
printf("\n\n");
return verifyServerKey(eCurve, genPoint, pubPoint, pKey);
} }

View File

@ -66,8 +66,6 @@ EC_GROUP *initializeEllipticCurve(
// Context variable // Context variable
context = BN_CTX_new(); context = BN_CTX_new();
/* Public data */ /* Public data */
BN_hex2bn(&p, pSel); BN_hex2bn(&p, pSel);
BN_set_word(a, aSel); BN_set_word(a, aSel);

View File

@ -14,7 +14,88 @@
HWND hMainWindow; HWND hMainWindow;
const WCHAR *pAboutLink = L"https://github.com/Endermanch/XPKeygen", const WCHAR *pAboutLink = L"https://github.com/Endermanch/XPKeygen",
*pWebsite = L"https://malwarewatch.org"; *pWebsite = L"https://malwarewatch.org",
*pVersion = L"2.2";
bool bServer = false,
bMusic = true;
void formatXP(WCHAR *pBSection, WCHAR *pCSection, WCHAR *pText) {
WCHAR pFPK[32]{};
int pSSection = 0;
for (int i = 0; i < wcslen(pCSection); i++)
pSSection -= pCSection[i] - '0';
while (pSSection < 0)
pSSection += 7;
char pKey[PK_LENGTH + NULL_TERMINATOR]{};
ul32 msDigits = _wtoi(pBSection),
lsDigits = _wtoi(pCSection);
ul32 nRPK = msDigits * 1'000'000 + lsDigits,
hash = 0,
bKey[4]{},
bSig[2]{};
bool bValid = keyXP(pKey, nRPK);
unbase24(bKey, pKey);
unpackXP(nullptr, &hash, bSig, bKey);
for (int i = 0; i < 5; i++)
wsprintfW(pFPK, L"%s%s%.5S", pFPK, i != 0 ? L"-" : L"", &pKey[5 * i]);
wsprintfW(
pText,
L"Product ID:\tPPPPP-%03d-%06d%d-23XXX\r\n\r\nBytecode:\t%08lX %08lX %08lX %08lX\r\nHash:\t\t%08lX\r\nSignature:\t%08lX %08lX\r\nCurve Point:\t%s\r\n\r\n%s\r\n",
nRPK / 1'000'000,
nRPK % 1'000'000,
pSSection,
bKey[3], bKey[2], bKey[1], bKey[0],
hash,
bSig[1], bSig[0],
bValid ? L"True" : L"False",
pFPK
);
}
void formatServer(WCHAR *pText) {
WCHAR pFPK[32]{};
char pKey[PK_LENGTH + NULL_TERMINATOR]{};
ul32 hash = 0,
osFamily = 0,
prefix = 0,
bKey[4]{},
bSig[2]{};
bool bValid = keyServer(pKey);
unbase24(bKey, pKey);
unpackServer(&osFamily, &hash, bSig, &prefix, bKey);
for (int i = 0; i < 5; i++)
wsprintfW(pFPK, L"%s%s%.5S", pFPK, i != 0 ? L"-" : L"", &pKey[5 * i]);
wsprintfW(
pText,
L"Bytecode:\t%08lX %08lX %08lX %08lX\r\nOS Family:\t%d\r\nHash:\t\t%08lX\r\nSignature:\t%08lX %08lX\r\nPrefix:\t\t%04lX\r\nCurve Point:\t%s\r\n\r\n%s\r\n",
bKey[3], bKey[2], bKey[1], bKey[0],
osFamily,
hash,
bSig[1], bSig[0],
prefix,
bValid ? L"True" : L"False",
pFPK
);
}
void StopAudio() {
PlaySoundW(nullptr, nullptr, 0);
}
bool PlayAudio(HINSTANCE hInstance, WCHAR *lpName, UINT bFlags) { bool PlayAudio(HINSTANCE hInstance, WCHAR *lpName, UINT bFlags) {
HANDLE hResInfo = FindResourceW(hInstance, lpName, L"WAVE"); HANDLE hResInfo = FindResourceW(hInstance, lpName, L"WAVE");
@ -33,8 +114,8 @@ bool PlayAudio(HINSTANCE hInstance, WCHAR *lpName, UINT bFlags) {
return sndPlaySoundW(lpRes, SND_MEMORY | bFlags); return sndPlaySoundW(lpRes, SND_MEMORY | bFlags);
} }
/* Static link processor. */ /* Bitmap link processor. */
LRESULT StaticLinkProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData) { LRESULT BitmapLinkProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData) {
static TRACKMOUSEEVENT trackMouse; static TRACKMOUSEEVENT trackMouse;
static BOOL isSet = FALSE; static BOOL isSet = FALSE;
@ -42,7 +123,7 @@ LRESULT StaticLinkProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam, UI
switch (uMsg) { switch (uMsg) {
// Set the struct up outside of a frequently executed message to speed things up. // Set the struct up outside of a frequently executed message to speed things up.
case WM_APP + IDC_LABEL4: { case WM_APP + 0x69: {
trackMouse.cbSize = sizeof(TRACKMOUSEEVENT); trackMouse.cbSize = sizeof(TRACKMOUSEEVENT);
trackMouse.dwFlags = TME_LEAVE; trackMouse.dwFlags = TME_LEAVE;
trackMouse.dwHoverTime = HOVER_DEFAULT; trackMouse.dwHoverTime = HOVER_DEFAULT;
@ -58,7 +139,7 @@ LRESULT StaticLinkProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam, UI
case WM_MOUSEMOVE: { case WM_MOUSEMOVE: {
if (!isSet) { if (!isSet) {
TrackMouseEvent(&trackMouse); TrackMouseEvent(&trackMouse);
SetCursor(LoadCursorW(NULL, IDC_HAND)); SetCursor(LoadCursorW(nullptr, IDC_HAND));
isSet = TRUE; isSet = TRUE;
} }
@ -69,7 +150,7 @@ LRESULT StaticLinkProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam, UI
// Set cursor back to normal if it's outside of static area. // Set cursor back to normal if it's outside of static area.
case WM_MOUSELEAVE: { case WM_MOUSELEAVE: {
if (isSet) { if (isSet) {
SetCursor(LoadCursorW(NULL, IDC_ARROW)); SetCursor(LoadCursorW(nullptr, IDC_ARROW));
isSet = FALSE; isSet = FALSE;
} }
@ -78,7 +159,64 @@ LRESULT StaticLinkProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam, UI
// Remove the subclass before window closes. // Remove the subclass before window closes.
case WM_NCDESTROY: { case WM_NCDESTROY: {
RemoveWindowSubclass(hWindow, StaticLinkProc, 1); RemoveWindowSubclass(hWindow, BitmapLinkProc, uIdSubclass);
break;
}
// Pass everything else to DefWndProc.
default: return DefSubclassProc(hWindow, uMsg, wParam, lParam);
}
return 0;
}
/* Static link processor. */
LRESULT StaticLinkProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData) {
static TRACKMOUSEEVENT trackMouse;
static BOOL isSet = FALSE;
// The worst part here was to avoid pointer flickering, as well as spamming the SetCursor function.
switch (uMsg) {
// Set the struct up outside of a frequently executed message to speed things up.
case WM_APP + 0x69: {
trackMouse.cbSize = sizeof(TRACKMOUSEEVENT);
trackMouse.dwFlags = TME_LEAVE;
trackMouse.dwHoverTime = HOVER_DEFAULT;
trackMouse.hwndTrack = hWindow;
break;
}
// You have to turn off the WM_SETCURSOR, because it spams the SetCursor function with IDC_ARROW in the DefWndProc. Moist garbage.
case WM_SETCURSOR: break;
// Set cursor to hand if it's inside of static area, refresh the mouse tracking loop.
case WM_MOUSEMOVE: {
if (!isSet) {
TrackMouseEvent(&trackMouse);
SetCursor(LoadCursorW(nullptr, IDC_HAND));
isSet = TRUE;
}
break;
}
// Set cursor back to normal if it's outside of static area.
case WM_MOUSELEAVE: {
if (isSet) {
SetCursor(LoadCursorW(nullptr, IDC_ARROW));
isSet = FALSE;
}
break;
}
// Remove the subclass before window closes.
case WM_NCDESTROY: {
RemoveWindowSubclass(hWindow, StaticLinkProc, uIdSubclass);
break; break;
} }
@ -91,6 +229,8 @@ LRESULT StaticLinkProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam, UI
} }
LRESULT CALLBACK WNDProc(HWND hWindow, UINT uMessage, WPARAM wParam, LPARAM lParam) { LRESULT CALLBACK WNDProc(HWND hWindow, UINT uMessage, WPARAM wParam, LPARAM lParam) {
static HINSTANCE hInstance;
static HBRUSH hBGColorPrim, hBGColorSec, hFGColor, hBtnDefault, static HBRUSH hBGColorPrim, hBGColorSec, hFGColor, hBtnDefault,
hBtn1Select, hBtn1Hot, hBtn1Select, hBtn1Hot,
hBtn2Select, hBtn2Hot, hBtn2Select, hBtn2Hot,
@ -102,12 +242,23 @@ LRESULT CALLBACK WNDProc(HWND hWindow, UINT uMessage, WPARAM wParam, LPARAM lPar
hBtn2SelectP, hBtn2HotP, hBtn2SelectP, hBtn2HotP,
hBtn3SelectP, hBtn3HotP, hBtn3SelectP, hBtn3HotP,
hBtn4SelectP, hBtn4HotP; hBtn4SelectP, hBtn4HotP;
static HDC hMainDC; static HDC hMainDC;
static HBITMAP hBMusicOn, hBMusicOff;
switch (uMessage) { switch (uMessage) {
case WM_CREATE: case WM_CREATE:
bMusic = true;
hInstance = ((LPCREATESTRUCT)(lParam))->hInstance;
hMainDC = GetDC(hWindow); hMainDC = GetDC(hWindow);
PlayAudio(hInstance, MAKEINTRESOURCEW(IDR_WAVE1), SND_ASYNC | SND_LOOP | SND_NODEFAULT);
hBMusicOn = (HBITMAP)LoadImageW(hInstance, MAKEINTRESOURCEW(IDB_BITMAP3), IMAGE_BITMAP, 0, 0, 0);
hBMusicOff = (HBITMAP)LoadImageW(hInstance, MAKEINTRESOURCEW(IDB_BITMAP4), IMAGE_BITMAP, 0, 0, 0);
hFrameColor = CreatePen(PS_SOLID, 1, RGB(240, 240, 240)); hFrameColor = CreatePen(PS_SOLID, 1, RGB(240, 240, 240));
hFramePrim = CreatePen(PS_SOLID, 1, RGB(10, 10, 10)); hFramePrim = CreatePen(PS_SOLID, 1, RGB(10, 10, 10));
@ -115,7 +266,6 @@ LRESULT CALLBACK WNDProc(HWND hWindow, UINT uMessage, WPARAM wParam, LPARAM lPar
hBGColorSec = (HBRUSH)(GetStockObject(BLACK_BRUSH)); hBGColorSec = (HBRUSH)(GetStockObject(BLACK_BRUSH));
hFGColor = (HBRUSH)GetStockObject(WHITE_BRUSH); hFGColor = (HBRUSH)GetStockObject(WHITE_BRUSH);
// yellow, blue, red, green
hBtnDefaultP = CreatePen(PS_SOLID, 1, RGB(0, 0, 0)); hBtnDefaultP = CreatePen(PS_SOLID, 1, RGB(0, 0, 0));
hBtn1SelectP = CreatePen(PS_SOLID, 1, RGB(160, 160, 0)); hBtn1SelectP = CreatePen(PS_SOLID, 1, RGB(160, 160, 0));
@ -160,7 +310,11 @@ LRESULT CALLBACK WNDProc(HWND hWindow, UINT uMessage, WPARAM wParam, LPARAM lPar
SetBkMode((HDC)wParam, TRANSPARENT); SetBkMode((HDC)wParam, TRANSPARENT);
if ((HWND)lParam == GetDlgItem(hWindow, IDC_EDIT1)) { if ((HWND)lParam == GetDlgItem(hWindow, IDC_EDIT1)) {
if (bServer)
SetTextColor((HDC)wParam, RGB(30, 255, 30));
else
SetTextColor((HDC)wParam, RGB(255, 255, 0)); SetTextColor((HDC)wParam, RGB(255, 255, 0));
return (LRESULT)(hBGColorSec); return (LRESULT)(hBGColorSec);
} }
else if ((HWND)lParam == GetDlgItem(hWindow, IDC_LABEL4)) { else if ((HWND)lParam == GetDlgItem(hWindow, IDC_LABEL4)) {
@ -279,22 +433,21 @@ LRESULT CALLBACK WNDProc(HWND hWindow, UINT uMessage, WPARAM wParam, LPARAM lPar
case WM_COMMAND: case WM_COMMAND:
switch (LOWORD(wParam)) { switch (LOWORD(wParam)) {
case IDC_LABEL2: { case IDC_IMAGE2: {
switch (HIWORD(wParam)) { switch (HIWORD(wParam)) {
case STN_CLICKED: case STN_CLICKED:
CheckRadioButton(hWindow, IDC_RADIO1, IDC_RADIO2, IDC_RADIO1); if (bMusic) {
SendMessageW((HWND)lParam, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)hBMusicOff);
StopAudio();
break; bMusic = false;
} }
else {
SendMessageW((HWND)lParam, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)hBMusicOn);
PlayAudio(hInstance, MAKEINTRESOURCEW(IDR_WAVE1), SND_ASYNC | SND_LOOP | SND_NODEFAULT);
break; bMusic = true;
} }
case IDC_LABEL3: {
switch (HIWORD(wParam)) {
case STN_CLICKED:
CheckRadioButton(hWindow, IDC_RADIO1, IDC_RADIO2, IDC_RADIO2);
break; break;
} }
@ -312,6 +465,58 @@ LRESULT CALLBACK WNDProc(HWND hWindow, UINT uMessage, WPARAM wParam, LPARAM lPar
break; break;
} }
case IDC_LABEL2: {
switch (HIWORD(wParam)) {
case STN_CLICKED:
CheckRadioButton(hWindow, IDC_RADIO1, IDC_RADIO2, IDC_RADIO1);
break;
}
__fallthrough;
}
case IDC_RADIO1:
switch (HIWORD(wParam)) {
case BN_CLICKED:
EnableWindow(GetDlgItem(hMainWindow, IDC_BUTTON4), true);
EnableWindow(GetDlgItem(hMainWindow, IDC_INPUT1), true);
EnableWindow(GetDlgItem(hMainWindow, IDC_INPUT2), true);
bServer = false;
break;
}
break;
case IDC_LABEL3: {
switch (HIWORD(wParam)) {
case STN_CLICKED:
CheckRadioButton(hWindow, IDC_RADIO1, IDC_RADIO2, IDC_RADIO2);
break;
}
__fallthrough;
}
case IDC_RADIO2:
switch (HIWORD(wParam)) {
case BN_CLICKED:
EnableWindow(GetDlgItem(hMainWindow, IDC_BUTTON4), false);
EnableWindow(GetDlgItem(hMainWindow, IDC_INPUT1), false);
EnableWindow(GetDlgItem(hMainWindow, IDC_INPUT2), false);
bServer = true;
break;
}
break;
case IDC_BUTTON1: { case IDC_BUTTON1: {
ShellExecuteW(hWindow, L"open", pAboutLink, nullptr, nullptr, SW_SHOWNORMAL); ShellExecuteW(hWindow, L"open", pAboutLink, nullptr, nullptr, SW_SHOWNORMAL);
@ -319,54 +524,24 @@ LRESULT CALLBACK WNDProc(HWND hWindow, UINT uMessage, WPARAM wParam, LPARAM lPar
} }
case IDC_BUTTON2: { case IDC_BUTTON2: {
WCHAR *pText = (WCHAR *)calloc(512, sizeof(WCHAR));
HWND hEdit = GetDlgItem(hMainWindow, IDC_EDIT1); HWND hEdit = GetDlgItem(hMainWindow, IDC_EDIT1);
HWND hInput1 = GetDlgItem(hMainWindow, IDC_INPUT1);
HWND hInput2 = GetDlgItem(hMainWindow, IDC_INPUT2);
WCHAR pBSection[4]{}, pCSection[8]{}, pFPK[32]{}; if (bServer) {
formatServer(pText);
}
else {
WCHAR pBSection[4]{}, pCSection[8]{};
HWND hInput1 = GetDlgItem(hMainWindow, IDC_INPUT1),
hInput2 = GetDlgItem(hMainWindow, IDC_INPUT2);
SendMessageW(hInput1, WM_GETTEXT, 3 + NULL_TERMINATOR, (LPARAM)pBSection); SendMessageW(hInput1, WM_GETTEXT, 3 + NULL_TERMINATOR, (LPARAM)pBSection);
SendMessageW(hInput2, WM_GETTEXT, 6 + NULL_TERMINATOR, (LPARAM)pCSection); SendMessageW(hInput2, WM_GETTEXT, 6 + NULL_TERMINATOR, (LPARAM)pCSection);
int pSSection = 0; formatXP(pBSection, pCSection, pText);
}
for (int i = 0; i < wcslen(pCSection); i++)
pSSection -= pCSection[i] - '0';
while (pSSection < 0)
pSSection += 7;
ul32 msDigits = _wtoi(pBSection),
lsDigits = _wtoi(pCSection);
ul32 nRPK = msDigits * 1'000'000 + lsDigits,
hash = 0,
sig[2]{};
CHAR pKey[PK_LENGTH + NULL_TERMINATOR]{};
keyXP(pKey, &hash, sig, nRPK);
for (int i = 0; i < 5; i++)
wsprintfW(pFPK, L"%s%s%.5S", pFPK, i != 0 ? L"-" : L"", &pKey[5 * i]);
WCHAR *pText = (WCHAR *)calloc(512 + 4 + 9 + 5 * NULL_TERMINATOR, sizeof(WCHAR));
wsprintfW(
pText,
L"%s%sProduct ID: PPPPP-%03d-%06d%d-23XXX\r\nHash: %08lX\r\nSignature: %08lX-%08lX\r\n\r\n%s\r\n",
pText,
wcslen(pText) ? L"\r\n" : L"",
nRPK / 1'000'000,
nRPK % 1'000'000,
pSSection,
hash,
sig[1], sig[0],
pFPK
);
SendMessageW(hEdit, WM_SETTEXT, 0, (LPARAM)pText); SendMessageW(hEdit, WM_SETTEXT, 0, (LPARAM)pText);
free(pText); free(pText);
return 0; return 0;
@ -516,7 +691,7 @@ bool InitializeWindow(HINSTANCE hInstance) {
// Select the default font. // Select the default font.
SelectObject(hMainDC, hLabelFont); SelectObject(hMainDC, hLabelFont);
HBITMAP hBitmap = (HBITMAP)LoadImageW(hInstance, MAKEINTRESOURCEW(IDB_BITMAP2), IMAGE_BITMAP, 0, 0, 0); HBITMAP hBLogo = (HBITMAP)LoadImageW(hInstance, MAKEINTRESOURCEW(IDB_BITMAP2), IMAGE_BITMAP, 0, 0, 0);
HWND hLogo = CreateWindowExW( HWND hLogo = CreateWindowExW(
0, 0,
@ -529,7 +704,27 @@ bool InitializeWindow(HINSTANCE hInstance) {
hInstance, nullptr hInstance, nullptr
); );
SendMessageW(hLogo, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)hBitmap); SendMessageW(hLogo, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)hBLogo);
HBITMAP hBMusicOn = (HBITMAP)LoadImageW(hInstance, MAKEINTRESOURCEW(IDB_BITMAP3), IMAGE_BITMAP, 0, 0, 0),
hBMusicOff = (HBITMAP)LoadImageW(hInstance, MAKEINTRESOURCEW(IDB_BITMAP4), IMAGE_BITMAP, 0, 0, 0);
HWND hMusic = CreateWindowExW(
0,
L"Static", nullptr,
WS_CHILD | WS_VISIBLE |
SS_BITMAP | SS_REALSIZECONTROL |
SS_NOTIFY,
w - 67, 180,
32, 32,
hMainWindow, (HMENU)IDC_IMAGE2,
hInstance, nullptr
);
SendMessageW(hMusic, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)hBMusicOn);
SetWindowSubclass(hMusic, BitmapLinkProc, IDC_IMAGE2, 0);
SendMessageW(hMusic, WM_APP + 0x69, 0, 0);
HWND hGroupBox = CreateWindowExW( HWND hGroupBox = CreateWindowExW(
0, 0,
@ -571,6 +766,7 @@ bool InitializeWindow(HINSTANCE hInstance) {
); );
SendMessageW(hInput1, EM_SETCUEBANNER, 0, (LPARAM)L"BBB"); SendMessageW(hInput1, EM_SETCUEBANNER, 0, (LPARAM)L"BBB");
SendMessageW(hInput1, WM_SETTEXT, 0, (LPARAM)L"640");
SendMessageW(hInput1, WM_SETFONT, (WPARAM)hLabelFont, 0); SendMessageW(hInput1, WM_SETFONT, (WPARAM)hLabelFont, 0);
SendMessageW(hInput1, EM_SETLIMITTEXT, (WPARAM)3, 0); SendMessageW(hInput1, EM_SETLIMITTEXT, (WPARAM)3, 0);
@ -602,6 +798,7 @@ bool InitializeWindow(HINSTANCE hInstance) {
); );
SendMessageW(hInput2, EM_SETCUEBANNER, 0, (LPARAM)L"CCCCCC"); SendMessageW(hInput2, EM_SETCUEBANNER, 0, (LPARAM)L"CCCCCC");
SendMessageW(hInput2, WM_SETTEXT, 0, (LPARAM)L"883400");
SendMessageW(hInput2, WM_SETFONT, (WPARAM)hLabelFont, 0); SendMessageW(hInput2, WM_SETFONT, (WPARAM)hLabelFont, 0);
SendMessageW(hInput2, EM_SETLIMITTEXT, (WPARAM)6, 0); SendMessageW(hInput2, EM_SETLIMITTEXT, (WPARAM)6, 0);
@ -643,7 +840,7 @@ bool InitializeWindow(HINSTANCE hInstance) {
17, 20, 17, 20,
hMainWindow, hMainWindow,
(HMENU)IDC_RADIO1, (HMENU)IDC_RADIO1,
hInstance, NULL hInstance, nullptr
); );
SendMessageW(hRadio1, BM_SETCHECK, 1, 0); SendMessageW(hRadio1, BM_SETCHECK, 1, 0);
@ -673,7 +870,7 @@ bool InitializeWindow(HINSTANCE hInstance) {
17, 20, 17, 20,
hMainWindow, hMainWindow,
(HMENU)IDC_RADIO2, (HMENU)IDC_RADIO2,
hInstance, NULL); hInstance, nullptr);
SendMessageW(hRadio2, WM_SETFONT, (WPARAM)hLabelFont, 0); SendMessageW(hRadio2, WM_SETFONT, (WPARAM)hLabelFont, 0);
@ -756,8 +953,6 @@ bool InitializeWindow(HINSTANCE hInstance) {
SendMessageW(hQuit, WM_SETFONT, (WPARAM)hLabelFont, 0); SendMessageW(hQuit, WM_SETFONT, (WPARAM)hLabelFont, 0);
const WCHAR *pVersion = L"2.1";
WCHAR pVersionString[256]{}; WCHAR pVersionString[256]{};
wsprintfW(pVersionString, L"v%s • %s", pVersion, pWebsite); wsprintfW(pVersionString, L"v%s • %s", pVersion, pWebsite);
@ -777,12 +972,12 @@ bool InitializeWindow(HINSTANCE hInstance) {
SetWindowSubclass(hVersion, StaticLinkProc, IDC_LABEL4, 0); SetWindowSubclass(hVersion, StaticLinkProc, IDC_LABEL4, 0);
SendMessageW(hVersion, WM_SETFONT, (WPARAM)hSmolFont, 0); SendMessageW(hVersion, WM_SETFONT, (WPARAM)hSmolFont, 0);
SendMessageW(hVersion, WM_APP + IDC_LABEL4, 0, 0); SendMessageW(hVersion, WM_APP + 0x69, 0, 0);
HWND hMotto = CreateWindowExW( HWND hMotto = CreateWindowExW(
0, 0,
L"Static", L"Static",
L"we keep on downloading ◄ 11/04/2023", L"we keep on downloading ◄ 12/04/2023",
WS_CHILD | WS_VISIBLE, WS_CHILD | WS_VISIBLE,
w - (170 + 15), 436, w - (170 + 15), 436,
170, 16, 170, 16,
@ -795,8 +990,6 @@ bool InitializeWindow(HINSTANCE hInstance) {
ShowWindow(hMainWindow, SW_SHOW); ShowWindow(hMainWindow, SW_SHOW);
UpdateWindow(hMainWindow); UpdateWindow(hMainWindow);
PlayAudio(hInstance, MAKEINTRESOURCEW(IDR_WAVE1), SND_ASYNC | SND_LOOP | SND_NODEFAULT);
MSG uMessage; MSG uMessage;
while(GetMessageW(&uMessage, nullptr, 0, 0)) { while(GetMessageW(&uMessage, nullptr, 0, 0)) {

130
xp.cpp
View File

@ -29,14 +29,18 @@ void unpackXP(ul32 *serial, ul32 *hash, ul32 *sig, ul32 *raw) {
// log2(24^25) = 114. // log2(24^25) = 114.
// Serial = Bits [0..30] -> 31 bits // Serial = Bits [0..30] -> 31 bits
if (serial)
serial[0] = raw[0] & 0x7fffffff; serial[0] = raw[0] & 0x7fffffff;
// Hash (e) = Bits [31..58] -> 28 bits // Hash (e) = Bits [31..58] -> 28 bits
if (hash)
hash[0] = ((raw[0] >> 31) | (raw[1] << 1)) & 0xfffffff; hash[0] = ((raw[0] >> 31) | (raw[1] << 1)) & 0xfffffff;
// Signature (s) = Bits [59..113] -> 55 bits // Signature (s) = Bits [59..113] -> 55 bits
if (sig) {
sig[0] = (raw[1] >> 27) | (raw[2] << 5); sig[0] = (raw[1] >> 27) | (raw[2] << 5);
sig[1] = (raw[2] >> 27) | (raw[3] << 5); sig[1] = (raw[2] >> 27) | (raw[3] << 5);
}
} }
/* Repacks the Product Key. */ /* Repacks the Product Key. */
@ -48,37 +52,23 @@ void packXP(ul32 *raw, ul32 *serial, ul32 *hash, ul32 *sig) {
} }
/* Verify Product Key */ /* Verify Product Key */
void verifyXPKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *publicKey, char *cdKey) { bool verifyXPKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *publicKey, char *cdKey) {
byte pKey[PK_LENGTH];
BN_CTX *context = BN_CTX_new(); BN_CTX *context = BN_CTX_new();
// Remove dashes from the CD-pKey. // Convert Base24 CD-key to bytecode.
for (int i = 0, k = 0; i < strlen(cdKey) && k < PK_LENGTH; i++) {
for (int j = 0; j < PK_LENGTH - 1; j++) {
if (cdKey[i] != '-' && cdKey[i] == charset[j]) {
pKey[k++] = j;
break;
}
}
if (k >= PK_LENGTH) break;
}
// Convert Base24 CD-pKey to bytecode.
ul32 bKey[4]{}; ul32 bKey[4]{};
ul32 pID[1], hash[1], sig[2]; ul32 pID, hash, sig[2];
unbase24(bKey, pKey); unbase24(bKey, cdKey);
// Output CD-pKey bytecode. // Output CD-key bytecode.
printf("Bytecode: %.8lX %.8lX %.8lX %.8lX\n", bKey[3], bKey[2], bKey[1], bKey[0]); printf("Bytecode: %.8lX %.8lX %.8lX %.8lX\n", bKey[3], bKey[2], bKey[1], bKey[0]);
// Extract data, hash and signature from the bytecode. // Extract data, hash and signature from the bytecode.
unpackXP(pID, hash, sig, bKey); unpackXP(&pID, &hash, sig, bKey);
printProductID(pID); printProductID(&pID);
printf("PID: %.8lX\nHash: %.8lX\nSignature: %.8lX %.8lX\n", pID[0], hash[0], sig[1], sig[0]); printf("PID: %.8lX\nHash: %.8lX\nSignature: %.8lX %.8lX\n", pID, hash, sig[1], sig[0]);
// e = Hash // e = Hash
// s = Signature // s = Signature
@ -86,11 +76,11 @@ void verifyXPKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *publicKey, cha
// Put hash word into BigNum e. // Put hash word into BigNum e.
e = BN_new(); e = BN_new();
BN_set_word(e, hash[0]); BN_set_word(e, hash);
// Reverse signature and create a new BigNum s. // Reverse signature and create a new BigNum s.
endiannessConvert((unsigned char *) sig, sizeof(sig)); endiannessConvert((byte *) sig, sizeof(sig));
s = BN_bin2bn((unsigned char *)sig, sizeof(sig), nullptr); s = BN_bin2bn((byte *)sig, sizeof(sig), nullptr);
// Create x and y. // Create x and y.
BIGNUM *x = BN_new(); BIGNUM *x = BN_new();
@ -112,13 +102,13 @@ void verifyXPKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *publicKey, cha
// v += u // v += u
EC_POINT_add(eCurve, v, u, v, context); EC_POINT_add(eCurve, v, u, v, context);
// EC_POINT_get_affine_coordinates() sets x and y, either of which may be NULL, to the corresponding coordinates of p. // EC_POINT_get_affine_coordinates() sets x and y, either of which may be nullptr, to the corresponding coordinates of p.
// x = v.x; y = v.y; // x = v.x; y = v.y;
EC_POINT_get_affine_coordinates(eCurve, v, x, y, context); EC_POINT_get_affine_coordinates(eCurve, v, x, y, context);
byte buf[FIELD_BYTES], md[SHA_DIGEST_LENGTH], t[4]; byte buf[FIELD_BYTES], md[SHA_DIGEST_LENGTH], t[4];
ul32 h; ul32 newHash;
SHA_CTX hContext; SHA_CTX hContext;
@ -126,44 +116,38 @@ void verifyXPKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *publicKey, cha
SHA1_Init(&hContext); SHA1_Init(&hContext);
// Chop Product ID into 4 bytes. // Chop Product ID into 4 bytes.
t[0] = pID[0] & 0xff; // First 8 bits t[0] = (pID & 0xff); // First 8 bits
t[1] = (pID[0] & 0xff00) >> 8; // Second 8 bits t[1] = (pID & 0xff00) >> 8; // Second 8 bits
t[2] = (pID[0] & 0xff0000) >> 16; // Third 8 bits t[2] = (pID & 0xff0000) >> 16; // Third 8 bits
t[3] = (pID[0] & 0xff000000) >> 24; // Fourth 8 bits t[3] = (pID & 0xff000000) >> 24; // Fourth 8 bits
// Hash chunk of data. // Hash chunk of data.
SHA1_Update(&hContext, t, sizeof(t)); SHA1_Update(&hContext, t, sizeof(t));
// Empty buffer, place v.x in little-endiannessConvert. // Empty buffer, place v.x in little-endian.
memset(buf, 0, sizeof(buf)); memset(buf, 0, FIELD_BYTES);
BN_bn2bin(x, buf); BN_bn2bin(x, buf);
endiannessConvert((unsigned char *) buf, sizeof(buf)); endiannessConvert(buf, FIELD_BYTES);
// Hash chunk of data. // Hash chunk of data.
SHA1_Update(&hContext, buf, sizeof(buf)); SHA1_Update(&hContext, buf, FIELD_BYTES);
// Empty buffer, place v.y in little-endiannessConvert. // Empty buffer, place v.y in little-endian.
memset(buf, 0, sizeof(buf)); memset(buf, 0, FIELD_BYTES);
BN_bn2bin(y, buf); BN_bn2bin(y, buf);
endiannessConvert((unsigned char *) buf, sizeof(buf)); endiannessConvert(buf, FIELD_BYTES);
// Hash chunk of data. // Hash chunk of data.
SHA1_Update(&hContext, buf, sizeof(buf)); SHA1_Update(&hContext, buf, FIELD_BYTES);
// Store the final message from hContext in md. // Store the final message from hContext in md.
SHA1_Final(md, &hContext); SHA1_Final(md, &hContext);
// h = First32(SHA-1(pID || v.x || v.y)) >> 4 // h = First32(SHA-1(pID || v.x || v.y)) >> 4
h = (md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24)) >> 4; newHash = (md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24)) >> 4;
h &= 0xfffffff; newHash &= 0xfffffff;
printf("Calculated hash: %.8lX\n", h); printf("Calculated hash: %.8lX\n", newHash);
// If we managed to generateXPKey a pKey with the same hash, the pKey is correct.
if (h == hash[0]) cprintf("Key valid\n", 0x0A);
else cprintf("Key invalid\n", 0x0C);
putchar('\n');
BN_free(e); BN_free(e);
BN_free(s); BN_free(s);
@ -174,10 +158,14 @@ void verifyXPKey(EC_GROUP *eCurve, EC_POINT *generator, EC_POINT *publicKey, cha
EC_POINT_free(u); EC_POINT_free(u);
EC_POINT_free(v); EC_POINT_free(v);
// If we managed to generateXPKey a pKey with the same hash, the pKey is correct.
if (newHash == hash) return true;
else return false;
} }
/* Generate a valid Product Key. */ /* Generate a valid Product Key. */
void generateXPKey(byte *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM *order, BIGNUM *privateKey, ul32 *pRaw, ul32 *hash, ul32 *sig) { void generateXPKey(char *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM *order, BIGNUM *privateKey, ul32 *pRaw) {
EC_POINT *r = EC_POINT_new(eCurve); EC_POINT *r = EC_POINT_new(eCurve);
BN_CTX *ctx = BN_CTX_new(); BN_CTX *ctx = BN_CTX_new();
@ -189,6 +177,8 @@ void generateXPKey(byte *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM *or
ul32 bKey[4]{}; ul32 bKey[4]{};
do { do {
ul32 hash = 0, sig[2]{};
memset(bKey, 0, 4); memset(bKey, 0, 4);
// Generate a random number c consisting of 384 bits without any constraints. // Generate a random number c consisting of 384 bits without any constraints.
@ -201,49 +191,49 @@ void generateXPKey(byte *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM *or
EC_POINT_get_affine_coordinates(eCurve, r, x, y, ctx); EC_POINT_get_affine_coordinates(eCurve, r, x, y, ctx);
SHA_CTX hContext; SHA_CTX hContext;
byte md[SHA_DIGEST_LENGTH], buf[FIELD_BYTES], t[4]; byte md[SHA_DIGEST_LENGTH]{}, buf[FIELD_BYTES]{}, t[4]{};
// h = (First-32(SHA1(pRaw, r.x, r.y)) >> 4 // h = (First-32(SHA1(pRaw, r.x, r.y)) >> 4
SHA1_Init(&hContext); SHA1_Init(&hContext);
// Chop Raw Product Key into 4 bytes. // Chop Raw Product Key into 4 bytes.
t[0] = pRaw[0] & 0xff; t[0] = (*pRaw & 0xff);
t[1] = (pRaw[0] & 0xff00) >> 8; t[1] = (*pRaw & 0xff00) >> 8;
t[2] = (pRaw[0] & 0xff0000) >> 16; t[2] = (*pRaw & 0xff0000) >> 16;
t[3] = (pRaw[0] & 0xff000000) >> 24; t[3] = (*pRaw & 0xff000000) >> 24;
// Hash chunk of data. // Hash chunk of data.
SHA1_Update(&hContext, t, sizeof(t)); SHA1_Update(&hContext, t, sizeof(t));
// Empty buffer, place r.x in little-endiannessConvert. // Empty buffer, place r.x in little-endiannessConvert.
memset(buf, 0, sizeof(buf)); memset(buf, 0, FIELD_BYTES);
BN_bn2bin(x, buf); BN_bn2bin(x, buf);
endiannessConvert((unsigned char *) buf, sizeof(buf)); endiannessConvert(buf, FIELD_BYTES);
// Hash chunk of data. // Hash chunk of data.
SHA1_Update(&hContext, buf, sizeof(buf)); SHA1_Update(&hContext, buf, FIELD_BYTES);
// Empty buffer, place r.y in little-endiannessConvert. // Empty buffer, place r.y in little-endiannessConvert.
memset(buf, 0, sizeof(buf)); memset(buf, 0, FIELD_BYTES);
BN_bn2bin(y, buf); BN_bn2bin(y, buf);
endiannessConvert((unsigned char *) buf, sizeof(buf)); endiannessConvert(buf, FIELD_BYTES);
// Hash chunk of data. // Hash chunk of data.
SHA1_Update(&hContext, buf, sizeof(buf)); SHA1_Update(&hContext, buf, FIELD_BYTES);
// Store the final message from hContext in md. // Store the final message from hContext in md.
SHA1_Final(md, &hContext); SHA1_Final(md, &hContext);
// h = (First-32(SHA1(pRaw, r.x, r.y)) >> 4 // h = (First-32(SHA1(pRaw, r.x, r.y)) >> 4
*hash = (md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24)) >> 4; hash = (md[0] | (md[1] << 8) | (md[2] << 16) | (md[3] << 24)) >> 4;
*hash &= 0xfffffff; hash &= 0xfffffff;
/* s = privateKey * hash + c; */ /* s = privateKey * hash + c; */
// s = privateKey; // s = privateKey;
BN_copy(s, privateKey); BN_copy(s, privateKey);
// s *= hash; // s *= hash;
BN_mul_word(s, *hash); BN_mul_word(s, hash);
// BN_mod_add() adds a to b % m and places the non-negative result in r. // BN_mod_add() adds a to b % m and places the non-negative result in r.
// s = |s + c % order|; // s = |s + c % order|;
@ -251,12 +241,12 @@ void generateXPKey(byte *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM *or
// Convert s from BigNum back to bytecode and reverse the endianness. // Convert s from BigNum back to bytecode and reverse the endianness.
BN_bn2bin(s, (byte *)sig); BN_bn2bin(s, (byte *)sig);
endiannessConvert((byte *) sig, BN_num_bytes(s)); endiannessConvert((byte *)sig, BN_num_bytes(s));
// Pack product key. // Pack product key.
packXP(bKey, pRaw, hash, sig); packXP(bKey, pRaw, &hash, sig);
printf("PID: %.8lX\nHash: %.8lX\nSignature: %.8lX %.8lX\n\n", pRaw[0], *hash, sig[1], sig[0]); printf("PID: %.8lX\nHash: %.8lX\nSignature: %.8lX %.8lX\n\n", *pRaw, hash, sig[1], sig[0]);
} while (bKey[3] >= 0x40000); } while (bKey[3] >= 0x40000);
// ↑ ↑ ↑ // ↑ ↑ ↑
// bKey[3] can't be longer than 18 bits, else the signature part will make // bKey[3] can't be longer than 18 bits, else the signature part will make
@ -274,7 +264,7 @@ void generateXPKey(byte *pKey, EC_GROUP *eCurve, EC_POINT *generator, BIGNUM *or
EC_POINT_free(r); EC_POINT_free(r);
} }
int keyXP(char *pKey, ul32 *hash, ul32 *sig, ul32 nRaw) { bool keyXP(char *pKey, ul32 nRaw) {
assert(nRaw <= 1'000'000'000); assert(nRaw <= 1'000'000'000);
// We cannot produce a valid key without knowing the private key k. The reason for this is that // We cannot produce a valid key without knowing the private key k. The reason for this is that
@ -310,13 +300,11 @@ int keyXP(char *pKey, ul32 *hash, ul32 *sig, ul32 nRaw) {
cprintf("Product Key:", 0x0A); cprintf("Product Key:", 0x0A);
// Generate the key. // Generate the key.
generateXPKey((byte *)pKey, eCurve, genPoint, genOrder, privateKey, &nRaw, hash, sig); generateXPKey(pKey, eCurve, genPoint, genOrder, privateKey, &nRaw);
printProductKey(pKey); printProductKey(pKey);
printf("\n\n"); printf("\n\n");
// Verify the key. // Verify the key.
verifyXPKey(eCurve, genPoint, pubPoint, pKey); return verifyXPKey(eCurve, genPoint, pubPoint, pKey);
return 0;
} }