-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathsol.cpp
140 lines (117 loc) · 2.64 KB
/
sol.cpp
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
#include <cstdio>
#include <cstdint>
#include <map>
using namespace std;
char s[] = " .::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::. ";
uint64_t poly = 0xC96C5795D7870F42;
uint64_t table[256];
void generate_table()
{
for(int i=0; i<256; ++i)
{
uint64_t crc = i;
for(unsigned int j=0; j<8; ++j)
{
// is current coefficient set?
if(crc & 1)
{
// yes, then assume it gets zero'd (by implied x^64 coefficient of dividend)
crc >>= 1;
// and add rest of the divisor
crc ^= poly;
}
else
{
// no? then move to next coefficient
crc >>= 1;
}
}
table[i] = crc;
}
}
uint64_t calculate_crc(uint8_t* stream, unsigned int n, uint64_t crc)
{
for(unsigned int i=0; i<n; ++i)
{
uint8_t index = stream[i] ^ crc;
uint64_t lookup = table[index];
crc >>= 8;
crc ^= lookup;
}
return crc;
}
char buf1[100];
char buf2[100];
uint64_t crc;
map<int, map<int, char>> hints = {
};
#include <string.h>
int main() {
generate_table();
FILE* f = fopen("FLAGZ.DAT", "rb");
for (int row=0; row<65; row++) {
fread(buf2, 80, 1, f);
fread(&crc, 8, 1, f);
if (row < 53) continue;
if (row == 53) {
strcpy(buf1, ": :");
continue;
}
for (int i=0; i<80; i++) {
buf1[i] ^= buf2[i];
}
for (auto& hint: hints[row]) {
buf1[hint.first] = hint.second;
}
int found = 0;
int cnt=0;
#define BRU() for (int i=iprev; i<80 && !found; i++) for(int j=32; j<128; j++) { int old=buf1[i]; buf1[i] = j; int iprev = i;
#define BRE() buf1[i] = old; }
E0:
int iprev = 0;
BRU()
uint64_t c = calculate_crc((uint8_t*)buf1, 80, 0);
if (c == crc) {
found = true;
cnt = 1;
goto E1;
}
BRE()
E1:
BRU()
BRU()
uint64_t c = calculate_crc((uint8_t*)buf1, 80, 0);
if (c == crc) {
found = true;
cnt = 2;
goto E2;
}
BRE()
BRE()
E2:
if (!found) {
printf("Help! (row %d)\n", row);
printf("%s\n", buf1);
for (int i=0; i<80; i++){
printf("%d", i/10);
}
printf("\n");
for (int i=0; i<80; i++){
printf("%d", i%10);
}
printf("\n");
int col;
char bu[10];
scanf("%d %s", &col, bu);
if(bu[0] == 's' && bu[1] == 'p') bu[0] = ' ';
if(bu[0] == 'e' && bu[1] == 'x') continue;
buf1[col] = bu[0];
goto E0;
}
if (!found) printf(":<\n");
printf("%s ", buf1);
printf("%d ", cnt);
uint64_t c = calculate_crc((uint8_t*)buf1, 80, 0);
printf("\t%lx %lx\n", c, crc);
}
}