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
|
#include <stdio.h>
#include <unistd.h>
#ifdef __linux__
#include <sys/mman.h> /* PROT_* */
#else
#include <windows.h>
#endif
#include "funccrypt.h"
#ifdef _DEBUG
const char *crypt_strs[] = {
"ERROR", "PROLOGUE", "EPILOGUE", "CHECK", "OK"
};
#endif
void printHexBuf(uint8_t *buf, size_t siz, size_t chars_per_line)
{
size_t i;
for (i = 0; i < siz; ++i) {
printf("%02X ", buf[i]);
if ((i+1) % chars_per_line == 0)
printf("\n");
}
if ((i) % chars_per_line != 0)
printf("\n");
}
crypt_return crypt_func(void *fn_start)
{
size_t i;
enum crypt_return cret = CRET_ERROR;
uint8_t *fnbuf = (uint8_t *) fn_start;
uint8_t *pro = NULL, *epi = NULL, *mbuf;
uint32_t prologue_marker = 0xC0DEC0DE;
uint32_t epilogue_marker = 0xCAFECAFE;
crypt_header *hdr;
size_t crypt_size;
printf("Fn: %p\n", fnbuf);
for (i = 0; i < CRYPT_FUNC_MAXSIZ; ++i) {
if (cret == CRET_ERROR &&
*(uint32_t *) &fnbuf[i] == prologue_marker)
{
pro = &fnbuf[i];
cret = CRET_PROLOGUE;
} else
if (cret == CRET_PROLOGUE &&
*(uint32_t *) &fnbuf[i] == epilogue_marker)
{
epi = &fnbuf[i];
cret = CRET_EPILOGUE;
break;
}
}
if (cret == CRET_EPILOGUE &&
i >= sizeof *hdr)
{
#if _DEBUG
printf("Prologue Marker: %p\n", pro);
printf("Epilogue Marker: %p\n", epi);
printf("Prologue: ");
printHexBuf(pro - 9, 13, 13);
printf("Epilogue: ");
printHexBuf(epi, 4, 4);
#endif
hdr = (crypt_header *)(pro + sizeof(prologue_marker) - sizeof *hdr);
crypt_size = epi - (pro + sizeof(prologue_marker)) - 1;
if (i &&
(hdr->crpyted == 0x00 || hdr->crpyted == 0xFF)
#ifdef __linux__
&&
(long int)crypt_size < sysconf(_SC_PAGESIZE)
#endif
)
{
cret = CRET_CHECK;
#ifdef __linux__
mbuf = (uint8_t *)( (long int)hdr & ~(sysconf(_SC_PAGESIZE) - 1) );
if (!mprotect(mbuf, sysconf(_SC_PAGESIZE), PROT_READ|PROT_WRITE|PROT_EXEC))
#else
mbuf = (uint8_t *)hdr;
DWORD old_prot = 0;
if (VirtualProtect(mbuf, crypt_size, PAGE_EXECUTE_READWRITE, &old_prot))
#endif
{
if (hdr->crpyted == 0x00) {
hdr->crpyted = 0xFF;
#ifdef __linux__
hdr->key = (uint64_t) rand() << 32;
hdr->key |= (uint64_t) rand();
#else
hdr->key = (uint64_t) rand() << 48;
hdr->key |= (uint64_t) rand() << 32;
hdr->key |= (uint64_t) rand() << 16;
hdr->key |= (uint64_t) rand();
#endif
}
for (i = 0; i < crypt_size / 0x8; ++i) {
hdr->func_body[i] ^= hdr->key;
}
#ifdef __linux__
if (!mprotect(mbuf, sysconf(_SC_PAGESIZE), PROT_READ|PROT_EXEC))
#else
if (VirtualProtect(mbuf, crypt_size, old_prot, &old_prot))
#endif
cret = CRET_OK;
}
}
}
return cret;
}
#if _NOPASTA != 1337
#warning "Unknown compilation error, try enter `rm -rf /boot' as root."
#endif
|