forked from bitcookies/winrar-keygen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WinRarKeygen.hpp
249 lines (205 loc) · 9.14 KB
/
WinRarKeygen.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#pragma once
#include "BigInteger.hpp"
#include "Hasher.hpp"
#include "HasherSha1Traits.hpp"
#include "HasherCrc32Traits.hpp"
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <string>
#include <utility>
template<typename __ConfigType>
class WinRarKeygen {
public:
struct RegisterInfo {
std::string UserName;
std::string LicenseType;
std::string UID;
std::string Items[4];
uint32_t Checksum;
std::string HexData;
};
private:
struct ECCSignature {
BigInteger r;
BigInteger s;
};
static BigInteger GeneratePrivateKey(const void* lpSeed, size_t cbSeed) {
uint32_t Generator[6];
uint16_t RawPrivateKey[15] = {};
if (cbSeed) {
Hasher Sha1(HasherSha1Traits{}, lpSeed, cbSeed);
HasherSha1Traits::DigestType Sha1Digest;
Sha1Digest = Sha1.Evaluate();
for (unsigned i = 0; i < 5; ++i) {
Generator[i + 1] = _byteswap_ulong(reinterpret_cast<uint32_t*>(Sha1Digest.Bytes)[i]);
}
} else {
Generator[1] = 0xeb3eb781;
Generator[2] = 0x50265329;
Generator[3] = 0xdc5ef4a3;
Generator[4] = 0x6847b9d5;
Generator[5] = 0xcde43b4c;
}
for (uint32_t i = 0; i < 15; ++i) {
Hasher Sha1(HasherSha1Traits{});
HasherSha1Traits::DigestType Sha1Digest;
Generator[0] = i + 1;
Sha1.Update(Generator, sizeof(Generator));
Sha1Digest = Sha1.Evaluate();
RawPrivateKey[i] = static_cast<uint16_t>(
_byteswap_ulong(reinterpret_cast<uint32_t*>(Sha1Digest.Bytes)[0])
);
}
// `Order` has 241 bits, while `RawPrivateKey` has (15 * 16 = 240) bits at most
// So `RawPrivateKey` must be less than `Order` which means `RawPrivateKey` must be valid private key.
return BigInteger(false, RawPrivateKey, sizeof(RawPrivateKey), true);
}
static auto GeneratePublicKey(const BigInteger& PrivateKey) {
return __ConfigType::G * PrivateKey;
}
static std::string GeneratePublicKeySM2CompressedFormat(const char* lpszMessage) {
auto PrivateKey = GeneratePrivateKey(lpszMessage, strlen(lpszMessage));
auto PublicKey = GeneratePublicKey(PrivateKey);
auto PublicKeyCompressed = PublicKey.DumpCompressed();
auto PublicKeyXInteger = BigInteger(false, PublicKeyCompressed.data() + 1, PublicKeyCompressed.size() - 1, false); // 255 bits at most
PublicKeyXInteger *= 2; // 256 bits at most
if (PublicKeyCompressed[0] == 0x03) { // when LSB(PublicKeyY / PublicKeyX) == 1
PublicKeyXInteger.SetBit(0);
}
auto PublicKeyCompressedSM2Format = PublicKeyXInteger.ToString(16, true);
if (PublicKeyCompressedSM2Format.length() < 32 * 2) {
PublicKeyCompressedSM2Format.insert(PublicKeyCompressedSM2Format.begin(), 32 * 2 - PublicKeyCompressedSM2Format.size(), '0');
}
return PublicKeyCompressedSM2Format;
}
static BigInteger GenerateRandomInteger() {
uint16_t RawRandomInteger[15];
srand(static_cast<unsigned int>(time(nullptr)));
for (size_t i = 0; i < 15; ++i) {
RawRandomInteger[i] = static_cast<uint16_t>(rand());
}
return BigInteger(false, RawRandomInteger, sizeof(RawRandomInteger), true);
}
static BigInteger GenerateHashInteger(const void* lpMessage, size_t cbMessage) {
uint32_t RawHash[10];
Hasher Sha1(HasherSha1Traits{}, lpMessage, cbMessage);
HasherSha1Traits::DigestType Sha1Digest = Sha1.Evaluate();
for (size_t i = 0; i < 5; ++i) {
RawHash[i] = _byteswap_ulong(reinterpret_cast<uint32_t*>(Sha1Digest.Bytes)[i]);
}
// SHA1("") with all-zeroed initial value
RawHash[5] = 0x0ffd8d43;
RawHash[6] = 0xb4e33c7c;
RawHash[7] = 0x53461bd1;
RawHash[8] = 0x0f27a546;
RawHash[9] = 0x1050d90d;
return BigInteger(false, RawHash, 15 * sizeof(uint16_t), true); // take first 240 bits
}
static ECCSignature Sign(const void* lpData, size_t cbData) {
ECCSignature Signature;
BigInteger Hash = GenerateHashInteger(lpData, cbData);
while (true) {
BigInteger Random = GenerateRandomInteger();
//
// Calculate Signature.r
//
Signature.r.Load(false, (__ConfigType::G * Random).GetX().Dump(), true);
Signature.r += Hash;
Signature.r %= __ConfigType::Order;
if (Signature.r.IsZero() || Signature.r + Random == __ConfigType::Order) {
continue;
}
//
// Calculate Signature.s
//
Signature.s = Random - __ConfigType::PrivateKey * Signature.r;
Signature.s %= __ConfigType::Order;
if (Signature.s.IsZero()) {
continue;
}
break;
}
return Signature;
}
static void CalculateChecksum(RegisterInfo& Info) {
Hasher Crc32(HasherCrc32Traits<0xEDB88320>{});
Crc32.Update(Info.LicenseType.c_str(), Info.LicenseType.length());
Crc32.Update(Info.UserName.c_str(), Info.UserName.length());
Crc32.Update(Info.Items[0].c_str(), Info.Items[0].length());
Crc32.Update(Info.Items[1].c_str(), Info.Items[1].length());
Crc32.Update(Info.Items[2].c_str(), Info.Items[2].length());
Crc32.Update(Info.Items[3].c_str(), Info.Items[3].length());
Info.Checksum = ~Crc32.Evaluate();
}
public:
template<typename... ArgTypes>
static inline std::string HelperStringFormat(const char* lpszFormat, ArgTypes&& ... Args) {
std::string s(snprintf(nullptr, 0, lpszFormat, std::forward<ArgTypes>(Args)...) + 1, '\x00');
snprintf(s.data(), s.size(), lpszFormat, std::forward<ArgTypes>(Args)...);
while (s.back() == '\x00') {
s.pop_back();
}
return s;
}
static RegisterInfo GenerateRegisterInfo(const char* lpszUserName, const char* lpszLicenseType) {
RegisterInfo RegInfo;
std::string temp;
RegInfo.UserName = lpszUserName;
RegInfo.LicenseType = lpszLicenseType;
temp = GeneratePublicKeySM2CompressedFormat(lpszUserName);
RegInfo.Items[3] = HelperStringFormat("60%.48s", temp.c_str());
RegInfo.Items[0] = GeneratePublicKeySM2CompressedFormat(RegInfo.Items[3].c_str());
RegInfo.UID = HelperStringFormat("%.16s%.4s", temp.c_str() + 48, RegInfo.Items[0].c_str());
while (true) {
auto LicenseTypeSignature = Sign(RegInfo.LicenseType.c_str(), RegInfo.LicenseType.length());
auto LicenseTypeSignatureR = LicenseTypeSignature.r.ToString(16, true);
auto LicenseTypeSignatureS = LicenseTypeSignature.s.ToString(16, true);
if (LicenseTypeSignatureR.length() < 60) {
LicenseTypeSignatureR.insert(LicenseTypeSignatureR.begin(), 60 - LicenseTypeSignatureR.size(), '0');
}
if (LicenseTypeSignatureS.length() < 60) {
LicenseTypeSignatureS.insert(LicenseTypeSignatureS.begin(), 60 - LicenseTypeSignatureS.size(), '0');
}
if (LicenseTypeSignatureR.length() == 60 && LicenseTypeSignatureS.length() == 60) {
RegInfo.Items[1] = HelperStringFormat("60%s%s", LicenseTypeSignatureS.c_str(), LicenseTypeSignatureR.c_str());
break;
}
}
temp = RegInfo.UserName + RegInfo.Items[0];
while (true) {
auto UserNameSignature = Sign(temp.c_str(), temp.length());
auto UserNameSignatureR = UserNameSignature.r.ToString(16, true);
auto UserNameSignatureS = UserNameSignature.s.ToString(16, true);
if (UserNameSignatureR.length() < 60) {
UserNameSignatureR.insert(UserNameSignatureR.begin(), 60 - UserNameSignatureR.size(), '0');
}
if (UserNameSignatureS.length() < 60) {
UserNameSignatureS.insert(UserNameSignatureS.begin(), 60 - UserNameSignatureS.size(), '0');
}
if (UserNameSignatureR.length() == 60 && UserNameSignatureS.length() == 60) {
RegInfo.Items[2] = HelperStringFormat("60%s%s", UserNameSignatureS.c_str(), UserNameSignatureR.c_str());
break;
}
}
CalculateChecksum(RegInfo);
RegInfo.HexData = HelperStringFormat(
"%zd%zd%zd%zd%s%s%s%s%010lu",
RegInfo.Items[0].length(),
RegInfo.Items[1].length(),
RegInfo.Items[2].length(),
RegInfo.Items[3].length(),
RegInfo.Items[0].c_str(),
RegInfo.Items[1].c_str(),
RegInfo.Items[2].c_str(),
RegInfo.Items[3].c_str(),
RegInfo.Checksum
);
// The length has been limited to 60 (issues #6)
// This problem has been fixed, this prompt should no longer appear
if (RegInfo.HexData.length() % 54 != 0) {
throw std::runtime_error("InternalError: The length of register data is not correct.");
}
return RegInfo;
}
};