TISC 2023 - (Level 2) XIPHEREPHIX's Reckless Mistake
Description
Our sources told us that one of PALINDROME’s lieutenants, XIPHEREHPIX, wrote a special computer program for certain members of PALINDROME. We have somehow managed to get a copy of the source code and the compiled binary. The intention of the program is unclear, but we think encrypted blob inside the program could contain a valuable secret.
Attached files
Solution
prog.c
:
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
q/**
XIPHEREHPIX's Secret Program
Written by
__ __ ___ ___ _ _ ___ ___ ___ _ _ ___ ___ __ __
\ \/ / |_ _| | _ \ | || | | __| | _ \ | __| | || | | _ \ |_ _| \ \/ /
> < | | | _/ | __ | | _| | / | _| | __ | | _/ | | > <
/_/\_\ |___| _|_|_ |_||_| |___| |_|_\ |___| |_||_| _|_|_ |___| /_/\_\
_|"""""|_|"""""|_| """ |_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_| """ |_|"""""|_|"""""|
"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'
BSD 3-Clause License
Copyright (c) 2022-2023, XIPHEREHPIX, PALINDROME. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**/
#include <stdio.h>
#include <termios.h>
#include <unistd.h>
#include <string.h>
#include <openssl/evp.h>
#include <openssl/bio.h>
#include <openssl/err.h>
#include <openssl/sha.h>
#include <openssl/conf.h>
#define OPENSSL_ENGINE NULL
#define MAX_PASSWORD_SIZE 50
typedef struct uint256 {
uint64_t a0;
uint64_t a1;
uint64_t a2;
uint64_t a3;
} uint256_t;
void handleErrors(void)
{
ERR_print_errors_fp(stderr);
abort();
}
int getch() {
int ch;
// struct to hold the terminal settings
struct termios old_settings, new_settings;
// take default setting in old_settings
tcgetattr(STDIN_FILENO, &old_settings);
// make of copy of it (Read my previous blog to know
// more about how to copy struct)
new_settings = old_settings;
// change the settings for by disabling ECHO mode
// read man page of termios.h for more settings info
new_settings.c_lflag &= ~(ICANON | ECHO);
// apply these new settings
tcsetattr(STDIN_FILENO, TCSANOW, &new_settings);
// now take the input in this mode
ch = getchar();
// reset back to default settings
tcsetattr(STDIN_FILENO, TCSANOW, &old_settings);
return ch;
}
int input_password(char *password) {
int i = 0;
int ch;
while ((ch = getch()) != '\n') {
if (ch == 127 || ch == 8) { // handle backspace
if (i != 0) {
i--;
}
} else if (i < MAX_PASSWORD_SIZE) {
password[i++] = ch;
}
}
printf("\n");
return i;
}
void calculate_sha256(unsigned char *digest_buf, unsigned char *msg, int msglen) {
EVP_MD_CTX *mdCtx = EVP_MD_CTX_new();
unsigned int mdLen, i;
if (!EVP_DigestInit_ex(mdCtx, EVP_sha256(), OPENSSL_ENGINE))
{
printf("Message digest initialization failed.\n");
EVP_MD_CTX_free(mdCtx);
exit(EXIT_FAILURE);
}
// Hashes cnt bytes of data at d into the digest context mdCtx
if (!EVP_DigestUpdate(mdCtx, msg, msglen))
{
printf("Message digest update failed.\n");
EVP_MD_CTX_free(mdCtx);
exit(EXIT_FAILURE);
}
if (!EVP_DigestFinal_ex(mdCtx, digest_buf, &mdLen))
{
printf("Message digest finalization failed.\n");
EVP_MD_CTX_free(mdCtx);
exit(EXIT_FAILURE);
}
EVP_MD_CTX_free(mdCtx);
}
int verify_password(char *password, int password_length) {
unsigned char mdVal[EVP_MAX_MD_SIZE];
unsigned int i;
calculate_sha256(mdVal, password, password_length);
uint64_t hash[] = { 0x962fe02a147163af,
0x8003eb5b7ff75652,
0x3220981f9f027e35,
0xfb933faadd7944b7};
return memcmp(mdVal, hash, 32);
}
void accumulate_xor(uint256_t *result, uint256_t *arr_entry) {
result->a0 ^= arr_entry->a0;
result->a1 ^= arr_entry->a1;
result->a2 ^= arr_entry->a2;
result->a3 ^= arr_entry->a3;
}
void initialise_key(unsigned char *key, char *password, int password_length) {
const char *seed = "PALINDROME IS THE BEST!";
int i, j;
int counter = 0;
uint256_t *key256 = (uint256_t *)key;
key256->a0 = 0;
key256->a1 = 0;
key256->a2 = 0;
key256->a3 = 0;
uint256_t arr[20] = { 0 };
calculate_sha256((unsigned char *) arr, (unsigned char *) seed, strlen(seed));
for (i = 1; i < 20; i++) {
calculate_sha256((unsigned char *)(arr+i), (unsigned char *) (arr+i-1), 32);
}
for (i = 0; i < password_length; i++) {
int ch = password[i];
for (j = 0; j < 8; j++) {
counter = counter % 20;
if (ch & 0x1) {
accumulate_xor(key256, arr+counter);
}
ch = ch >> 1;
counter++;
}
}
}
int gcm_decrypt(unsigned char *ciphertext, int ciphertext_len,
unsigned char *aad, int aad_len,
unsigned char *tag,
unsigned char *key,
unsigned char *iv, int iv_len,
unsigned char *plaintext)
{
EVP_CIPHER_CTX *ctx;
int len;
int plaintext_len;
int ret;
/* Create and initialise the context */
if(!(ctx = EVP_CIPHER_CTX_new()))
handleErrors();
/* Initialise the decryption operation. */
if(!EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, NULL))
handleErrors();
/* Set IV length. Not necessary if this is 12 bytes (96 bits) */
if(!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_IVLEN, iv_len, NULL))
handleErrors();
/* Initialise key and IV */
if(!EVP_DecryptInit_ex(ctx, NULL, NULL, key, iv))
handleErrors();
/*
* Provide any AAD data. This can be called zero or more times as
* required
*/
if(!EVP_DecryptUpdate(ctx, NULL, &len, aad, aad_len))
handleErrors();
/*
* Provide the message to be decrypted, and obtain the plaintext output.
* EVP_DecryptUpdate can be called multiple times if necessary
*/
if(!EVP_DecryptUpdate(ctx, plaintext, &len, ciphertext, ciphertext_len))
handleErrors();
plaintext_len = len;
/* Set expected tag value. Works in OpenSSL 1.0.1d and later */
if(!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_TAG, 16, tag))
handleErrors();
/*
* Finalise the decryption. A positive return value indicates success,
* anything else is a failure - the plaintext is not trustworthy.
*/
ret = EVP_DecryptFinal_ex(ctx, plaintext + len, &len);
/* Clean up */
EVP_CIPHER_CTX_free(ctx);
if(ret > 0) {
/* Success */
plaintext_len += len;
return plaintext_len;
} else {
/* Verify failed */
return -1;
}
}
void show_welcome_msg(unsigned char *key) {
int plaintext_length;
unsigned char *iv = "PALINDROME ROCKS";
unsigned char plaintext[128] = { 0 };
const unsigned char * const header = "welcome_message";
unsigned char ciphertext[] =
"\xad\xac\x81\x20\xc6\xd5\xb1\xb8\x3a\x2a\xa8\x54\xe6\x5f\x9a\xad"
"\xa4\x39\x05\xd9\x21\xae\xab\x50\x98\xbd\xe4\xc8\xe8\x2a\x3c\x63"
"\x82\xe3\x8e\x5d\x79\xf0\xc6\xf4\xf2\xe7";
unsigned char tag[] =
"\xbd\xfc\xc0\xdb\xd9\x09\xed\x66\x37\x34\x75\x11\x75\xa2\x7a\xaf";
plaintext_length = gcm_decrypt(ciphertext,
42,
(unsigned char *)header,
strlen(header),
tag,
key,
iv,
16,
plaintext);
printf("Welcome PALINDROME member. Your secret message is %.*s\n", plaintext_length, plaintext);
}
int main(int argc, char **argv)
{
char password[MAX_PASSWORD_SIZE + 1] = { 0 };
int password_length;
unsigned char key[32];
printf("Hello PALINDROME member, please enter password:");
password_length = input_password(password);
if (password_length < 40) {
printf("The password should be at least 40 characters as per PALINDROME's security policy.\n");
exit(0);
}
if (!verify_password(password, password_length)) {
initialise_key(key, password, password_length);
show_welcome_msg(key);
}
else {
printf("Failure! \n");
exit(0);
}
}
Here is my summary of the high-level flow:
- User enters a 40 character long password (
input_password()
) - The password is SHA256-hashed and compared against a hardcoded hash. (
verify_password()
) - If it matches exactly, a decryption key is generated using the password. (
initialise_key()
) - The hardcoded ciphertext is decrypted using the decryption key to obtain the flag. (
show_welcome_msg()
)
Based on this summary, we can tell that we need the correct password in order for the program to generate the correct decryption key. However, the hard-coded SHA256 hash was immediately observed to be un-crackable since the password is just too long.
Therefore, another way is needed to retrieve the decryption key without knowledge of the password. Perhaps we could attack the method of how the decryption key is generated in the initialise_key()
function?
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
void initialise_key(unsigned char *key, char *password, int password_length) {
const char *seed = "PALINDROME IS THE BEST!";
int i, j;
int counter = 0;
uint256_t *key256 = (uint256_t *)key;
key256->a0 = 0;
key256->a1 = 0;
key256->a2 = 0;
key256->a3 = 0;
uint256_t arr[20] = { 0 };
calculate_sha256((unsigned char *) arr, (unsigned char *) seed, strlen(seed));
for (i = 1; i < 20; i++) {
calculate_sha256((unsigned char *)(arr+i), (unsigned char *) (arr+i-1), 32);
}
for (i = 0; i < password_length; i++) {
int ch = password[i];
for (j = 0; j < 8; j++) {
counter = counter % 20;
if (ch & 0x1) {
accumulate_xor(key256, arr+counter);
}
ch = ch >> 1;
counter++;
}
}
}
Here is my summary of the initialise_key()
function
- Line 6 - 11: A 256-byte decryption key
key256
is initialized and zero’ed. - Line 13: An array of 20 256-byte keys
arr
is allocated. - Line 15: The first key in
arr
is assigned the SHA256 hash ofPALINDROME IS THE BEST!
. - Line 17 - 18: The subsequent keys are each assigned the SHA256 hash of the key that came before them.
- Line 21 - 32: For each bit in the binary representation of the password, if it is a
1
, the decryption keykey256
is XOR’ed with one of the keys inarr
via the use of theaccumulate_xor()
function.
Based on this summary, here are a few observations that I had:
- The 20 keys in
arr
can be easily generated using the same exact code. - The decryption key
key256
could have been XOR’ed with any of the 20 keys inarr
. - For each of the keys in
arr
,key256
could have also been XOR’ed multiple times with it or none at all.
Even if the number of times key256
was XOR’ed with the same key is unknown, it is not significant as given the properties of XOR, the problem can be simplified to whether key256
was XOR’ed with that key or not. Hence, there are a total of 2^20 = 1048576
different partitions of keys from arr
that could have been used to generate the final decryption key. Since the number of partitions is considered small, the partitions can be brute-forced through to find the right one.
Modified main() function in prog.c:
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
int main(int argc, char **argv)
{
unsigned char key[32];
// Generating the 20 keys that were used
const char *seed = "PALINDROME IS THE BEST!";
uint256_t arr[20] = { 0 };
calculate_sha256((unsigned char *) arr, (unsigned char *) seed, strlen(seed));
for (int i = 1; i < 20; i++) {
calculate_sha256((unsigned char *)(arr+i), (unsigned char *) (arr+i-1), 32);
}
// Brute-forcing through all 2**20 partitions
for(int i = 0; i < 1048576; i++) {
uint256_t *key256 = (uint256_t *)key;
key256->a0 = 0;
key256->a1 = 0;
key256->a2 = 0;
key256->a3 = 0;
int curr = i;
for(int j = 0; j < 20; j++) {
if (curr & 0x1) {
accumulate_xor(key256, arr+j);
}
curr = curr >> 1;
}
// Print the flag, even if the ciphertext was not decrypted with the correct decryption key
show_welcome_msg((unsigned char*) key256);
}
}
After modifying prog.c
, it is then compiled with the -lcrypto
flag:
1
$ gcc prog.c -lcrypto -o solve.bin
The compiled binary is then executed and the flag is retrieved by grep
ping for the flag format:
1
2
$ ./solve.bin | grep TISC
Welcome PALINDROME member. Your secret message is TISC{K3ysP4ce_1s_t00_smol_d2g7d97agsd8yhr}
Flag
TISC{K3ysP4ce_1s_t00_smol_d2g7d97agsd8yhr}