forked from emilytouchingcomputers/CTFium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexecve-sandbox.c
346 lines (289 loc) · 7.05 KB
/
execve-sandbox.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
#include "LIEF/LIEF.h"
#include <err.h>
#include <stdio.h>
#include <errno.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <seccomp.h>
#include <inttypes.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/user.h>
#include <sys/wait.h>
#include <sys/prctl.h>
#include <sys/syscall.h>
#define MAX_SIZE 0x1000
#define MARKER "deadbeef"
#define MARKER_SIZE (sizeof(MARKER) - 1)
static int readall(int fd, void *buf, size_t count)
{
ssize_t n;
size_t i;
char *p;
p = buf;
i = count;
while (i > 0) {
n = read(fd, p, i);
if (n == 0) {
warnx("read failed");
return -1;
} else if (n == -1) {
if (errno == EINTR)
continue;
warn("read failed");
return -1;
}
i -= n;
p += n;
if (count - i >= MARKER_SIZE) {
if (memcmp(p - MARKER_SIZE, MARKER, MARKER_SIZE) == 0) {
printf("[*] received %lu bytes\n", count - i);
break;
}
}
}
return count - i;
}
static int writeall(int fd, void *buf, size_t count)
{
ssize_t n;
size_t i;
char *p;
p = buf;
i = count;
while (i > 0) {
n = write(fd, p, i);
if (n == 0) {
warnx("write failed");
return -1;
} else if (n == -1) {
if (errno == EINTR)
continue;
warn("write failed");
return -1;
}
i -= n;
p += n;
}
return 0;
}
static int recvfile(int infd, char *template)
{
char buf[MAX_SIZE];
ssize_t count;
int outfd;
count = readall(infd, buf, sizeof(buf));
if (count == -1)
return -1;
outfd = mkstemp(template);
if (outfd == -1) {
warn("mkstemp");
return -1;
}
if (writeall(outfd, buf, count) != 0) {
close(outfd);
return -1;
}
if (fchmod(outfd, 0500) != 0) {
warn("fchmod");
close(outfd);
return -1;
}
close(outfd);
return 0;
}
static unsigned long get_mmap_min_addr(unsigned long *mmap_min_addr)
{
FILE *fp;
int ret;
fp = fopen("/proc/sys/vm/mmap_min_addr", "r");
if (fp == NULL) {
warn("failed to open \"/proc/sys/vm/mmap_min_addr\"");
return -1;
}
ret = (fscanf(fp, "%lu", mmap_min_addr) != 1);
fclose(fp);
return ret;
}
static int install_syscall_filter(unsigned long mmap_min_addr)
{
int allowed_syscall[] = {
SCMP_SYS(rt_sigreturn),
SCMP_SYS(rt_sigaction),
SCMP_SYS(rt_sigprocmask),
SCMP_SYS(sigreturn),
SCMP_SYS(exit_group),
SCMP_SYS(exit),
SCMP_SYS(brk),
SCMP_SYS(access),
SCMP_SYS(fstat),
SCMP_SYS(write),
SCMP_SYS(close),
SCMP_SYS(mprotect),
SCMP_SYS(arch_prctl),
SCMP_SYS(munmap),
SCMP_SYS(fstat),
SCMP_SYS(readlink),
SCMP_SYS(uname),
};
scmp_filter_ctx ctx;
unsigned int i;
int ret;
ctx = seccomp_init(SCMP_ACT_KILL);
if (ctx == NULL) {
warn("seccomp_init");
return -1;
}
for (i = 0; i < sizeof(allowed_syscall) / sizeof(int); i++) {
if (seccomp_rule_add(ctx, SCMP_ACT_ALLOW, allowed_syscall[i], 0) != 0) {
warn("seccomp_rule_add");
ret = -1;
goto out;
}
}
/* prevent mmap to map mmap_min_addr */
if (seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap), 1,
SCMP_A0(SCMP_CMP_GE, mmap_min_addr + PAGE_SIZE)) != 0) {
warn("seccomp_rule_add");
ret = -1;
goto out;
}
/* first execve argument (filename) must be mapped at mmap_min_addr */
if (seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(execve), 1,
SCMP_A0(SCMP_CMP_EQ, mmap_min_addr)) != 0) {
warn("seccomp_rule_add");
ret = -1;
goto out;
}
puts("[*] seccomp-bpf filters installed");
ret = seccomp_load(ctx);
if (ret != 0)
warn("seccomp_load");
out:
seccomp_release(ctx);
return ret;
}
static char *setup_sandbox(unsigned long mmap_min_addr)
{
int flags, prot;
void *p;
flags = MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED;
prot = PROT_READ | PROT_WRITE;
p = mmap((void *)mmap_min_addr, PAGE_SIZE, prot, flags, -1, 0);
if (p == MAP_FAILED) {
warn("mmap");
return NULL;
}
if (install_syscall_filter(mmap_min_addr) != 0) {
if (munmap(p, PAGE_SIZE) != 0)
warn("munmap");
return NULL;
}
return (char *)p;
}
static void execute(char *filename, unsigned long mmap_min_addr)
{
if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0) != 0)
err(EXIT_FAILURE, "prctl(PR_SET_PDEATHSIG)");
char *p = setup_sandbox(mmap_min_addr);
if (p == NULL)
exit(EXIT_FAILURE);
strncpy(p, filename, PAGE_SIZE);
p[PAGE_SIZE-1] = '\x00';
printf("[*] let's execute \"%s\" in that sandbox\n", filename);
if (execl(p, filename, NULL) != 0)
err(EXIT_FAILURE, "execl of \"%s\" failed", p);
/* never reached */
exit(EXIT_SUCCESS);
}
static int elf_check(const char *filename, unsigned long mmap_min_addr)
{
Elf_Binary_t *elf_binary = elf_parse(filename);
if (elf_binary == NULL) {
warnx("failed to parse ELF binary");
return -1;
}
Elf_Header_t header = elf_binary->header;
uint8_t *identity = header.identity;
int ret = 0;
if (identity[EI_CLASS] != ELFCLASS64) {
warnx("invalid ELF class \"%s\"", ELF_CLASS_to_string(identity[EI_CLASS]));
ret = -1;
goto out;
}
mmap_min_addr += PAGE_SIZE;
unsigned int i;
Elf_Section_t** sections = elf_binary->sections;
for (i = 0; i < header.numberof_sections; ++i) {
Elf_Section_t* section = sections[i];
if (section == NULL) {
warnx("invalid section %d", i);
ret = -1;
goto out;
}
if (section->virtual_address != 0 &&
section->virtual_address < mmap_min_addr + PAGE_SIZE) {
warnx("invalid section \"%s\" (0x%lx)", section->name,
section->virtual_address);
ret = -1;
goto out;
}
}
Elf_Segment_t** segments = elf_binary->segments;
for (i = 0; segments[i] != NULL; ++i) {
Elf_Segment_t* segment = segments[i];
if (segment->virtual_address != 0 &&
segment->virtual_address < mmap_min_addr + PAGE_SIZE) {
warnx("invalid segment (0x%lx)", segment->virtual_address);
ret = -1;
goto out;
}
}
out:
elf_binary_destroy(elf_binary);
return ret;
}
int main(void)
{
unsigned long mmap_min_addr;
char filename[PAGE_SIZE];
int ret, status;
pid_t pid;
setbuf(stdin, NULL);
setbuf(stdout, NULL);
setbuf(stderr, NULL);
system("/bin/ls -l .");
if (get_mmap_min_addr(&mmap_min_addr) != 0)
return EXIT_FAILURE;
strncpy(filename, "/tmp/execve-sandbox-XXXXXX", sizeof(filename));
puts("[*] waiting for an ELF binary...");
if (recvfile(STDIN_FILENO, filename) != 0)
return EXIT_FAILURE;
if (elf_check(filename, mmap_min_addr) != 0) {
ret = EXIT_FAILURE;
goto out;
}
pid = fork();
if (pid == -1) {
warn("fork");
ret = EXIT_FAILURE;
goto out;
}
/* child */
if (pid == 0)
execute(filename, mmap_min_addr);
/* parent */
if (waitpid(pid, &status, 0) == -1) {
warn("waitpid");
} else {
if (WIFSIGNALED(status) && WTERMSIG(status) == SIGSYS)
puts("[*] \xc2\xaf\x5c\x5f\x28\xe3\x83\x84\x29\x5f\x2f\xc2\xaf");
}
ret = EXIT_SUCCESS;
out:
if (unlink(filename) == -1)
warn("unlink \"%s\" failed", filename);
return ret;
}