-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathSystemSan.cpp
More file actions
588 lines (503 loc) · 18 KB
/
SystemSan.cpp
File metadata and controls
588 lines (503 loc) · 18 KB
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
/*
* Copyright 2022 Google LLC
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* A detector that uses ptrace to identify shell injection vulnerabilities. */
/* C standard library */
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
/* POSIX */
#include <sys/stat.h>
#include <sys/user.h>
#include <sys/wait.h>
#include <unistd.h>
/* Linux */
#include <sys/ptrace.h>
#include <syscall.h>
#include <fcntl.h>
#include <algorithm>
#include <filesystem>
#include <fstream>
#include <iostream>
#include <map>
#include <set>
#include <sstream>
#include <string>
#include <vector>
#include "inspect_utils.h"
#include "inspect_dns.h"
#define DEBUG_LOGS 0
#if DEBUG_LOGS
#define debug_log(...) \
do { \
fprintf(stderr, __VA_ARGS__); \
fflush(stdout); \
fputc('\n', stderr); \
} while (0)
#else
#define debug_log(...)
#endif
#define fatal_log(...) \
do { \
fprintf(stderr, __VA_ARGS__); \
fputc('\n', stderr); \
exit(EXIT_FAILURE); \
} while (0)
// The magic string that we'll use to detect full control over the command
// executed.
const std::string kTripWire = "/tmp/tripwire";
// Shell injection bug confirmed with /tmp/tripwire.
const std::string kInjectionError = "Shell injection";
// Shell corruption bug detected based on syntax error.
const std::string kCorruptionError = "Shell corruption";
// The magic string that we'll use to detect arbitrary file open
const std::string kFzAbsoluteDirectory = "/fz/";
// Arbitrary file open in /fz/
const std::string kArbitraryFileOpenError = "Arbitrary file open";
// Assuming only shorter (than this constant) top dir are legitly used.
constexpr int kRootDirMaxLength = 16;
// The PID of the root process we're fuzzing.
pid_t g_root_pid;
// Map of a PID/TID its PID/TID creator and wether it ran exec.
std::map<pid_t, ThreadParent> root_pids;
// Assuming the longest pathname is "/bin/bash".
constexpr int kShellPathnameLength = 20;
std::string kEvilLinkBombfile = "/tmp/evil-link-bombfile";
std::string kEvilLinkBombfileContents = "initial";
const std:: string kEvilLinkError = "Symbolic link followed";
const size_t kPathMax = 4096;
// Syntax error messages of each shell.
const std::map<std::string, std::set<std::string>> kShellSyntaxErrors = {
{"bash",
{
": command not found", // General
": syntax error", // Unfinished " or ' or ` or if, leading | or ;
": missing `]'", // Unfinished [
": event not found", // ! leads large numbers
": No such file or directory", // Leading < or /
}},
{"csh",
{
": Command not found.", // General
": Missing }.", // Unfinished {
"Too many ('s.", // Unfinished (
"Invalid null command.", // Leading | or < or >
"Missing name for redirect.", // Single < or >
": No match.", // Leading ? or [ or *
"Modifier failed.", // Leading ^
"No previous left hand side.", // A ^
": No such job.", // Leading %
": No current job.", // A %
": Undefined variable.", // Containing $
": Event not found.", // ! leads large numbers
// TODO: Make this more specific.
"Unmatched", // Unfinished " or ' or `, leading ;
}},
{"dash",
{
"not found", // General
"Syntax error", // Unfinished " or ' or ` or if, leading | or ; or &
"missing ]", // Unfinished [
"No such file", // Leading <
}},
{"zsh",
{
": command not found", // General
": syntax error", // Unfinished " or ' or `
": ']' expected", // Unfinished [
": no such file or directory", // Leading < or /
": parse error near", // Leading |, or &
": no such user or named directory", // Leading ~
}},
};
// Shells used by Processes.
std::map<pid_t, std::string> g_shell_pids;
struct Tracee {
pid_t pid;
bool syscall_enter = true;
Tracee(pid_t pid) : pid(pid) {}
};
pid_t run_child(char **argv) {
// Run the program under test with its args as a child process
pid_t pid = fork();
switch (pid) {
case -1:
fatal_log("Fork failed: %s", strerror(errno));
case 0:
raise(SIGSTOP);
execvp(argv[0], argv);
fatal_log("execvp: %s", strerror(errno));
}
return pid;
}
// Construct a string with the memory specified in a register.
std::string read_string(pid_t pid, unsigned long reg, unsigned long length) {
auto memory = read_memory(pid, reg, length);
if (!memory.size()) {
return "";
}
auto location = std::find(memory.begin(), memory.end(), static_cast<std::byte>(NULL));
size_t str_length = location - memory.begin();
std::string content(reinterpret_cast<char *>(memory.data()),
std::min(str_length, length));
return content;
}
void inspect_for_injection(pid_t pid, const user_regs_struct ®s) {
// Inspect a PID's registers for the sign of shell injection.
static bool is_enabled = check_enabled("shell_injection");
if (not is_enabled)
return;
std::string path = read_string(pid, regs.rdi, kTripWire.length());
if (!path.length()) {
return;
}
debug_log("inspecting");
if (path == kTripWire) {
report_bug(kInjectionError, pid);
}
}
std::string get_pathname(pid_t pid, const user_regs_struct ®s) {
// Parse the pathname from the memory specified in the RDI register.
std::string pathname = read_string(pid, regs.rdi, kShellPathnameLength);
debug_log("Pathname is %s (len %lu)\n", pathname.c_str(), pathname.length());
return pathname;
}
std::string match_shell(std::string binary_pathname);
// Identify the exact shell behind sh
std::string identify_sh(std::string path) {
char shell_pathname[kShellPathnameLength];
auto written = readlink(path.c_str(), shell_pathname, kShellPathnameLength - 1);
if (written == -1) {
std::cerr << "Cannot query which shell is behind sh: readlink failed on "
<< path << ": "
<< strerror(errno) << "\n";
std::cerr << "Assuming the shell is dash\n";
return "dash";
}
shell_pathname[written] = '\0';
debug_log("sh links to %s\n", shell_pathname);
std::string shell_pathname_str(shell_pathname);
return match_shell(shell_pathname_str);
}
std::string match_shell(std::string binary_pathname) {
// Identify the name of the shell used in the pathname.
if (!binary_pathname.length()) {
return "";
}
// We use c_str() to accept only the null terminated string.
std::string binary_name = binary_pathname.substr(
binary_pathname.find_last_of("/") + 1).c_str();
debug_log("Binary is %s (%lu)\n", binary_name.c_str(),
binary_name.length());
for (const auto &item : kShellSyntaxErrors) {
std::string known_shell = item.first;
if (binary_name == "sh") {
debug_log("Matched sh: Needs to identify which specific shell it is.\n");
return identify_sh(binary_pathname);
}
if (binary_name == known_shell) {
debug_log("Matched %s\n", binary_name.c_str());
return known_shell;
}
}
return "";
}
std::string get_shell(pid_t pid, const user_regs_struct ®s) {
// Get shell name used in a process.
std::string binary_pathname = get_pathname(pid, regs);
return match_shell(binary_pathname);
}
void match_error_pattern(std::string buffer, std::string shell, pid_t pid) {
auto error_patterns = kShellSyntaxErrors.at(shell);
for (const auto &pattern : error_patterns) {
if (buffer.find(pattern) != std::string::npos) {
std::cerr << "--- Found a sign of shell corruption ---\n"
<< buffer.c_str()
<< "\n----------------------------------------\n";
// If a shell corruption error happens, kill its parent.
auto parent = root_pids[pid];
while (!parent.ran_exec) {
if (parent.parent_tid == g_root_pid) {
break;
}
parent = root_pids[parent.parent_tid];
}
report_bug(kCorruptionError, parent.parent_tid);
}
}
}
void inspect_for_corruption(pid_t pid, const user_regs_struct ®s) {
// Inspect a PID's registers for shell corruption.
static bool is_enabled = check_enabled("shell_corruption");
if (not is_enabled)
return;
std::string buffer = read_string(pid, regs.rsi, regs.rdx);
debug_log("Write buffer: %s\n", buffer.c_str());
match_error_pattern(buffer, g_shell_pids[pid], pid);
}
void log_file_open(std::string path, int flags, pid_t pid) {
report_bug(kArbitraryFileOpenError, pid);
std::cerr << "===File opened: " << path.c_str() << ", flags = " << flags << ",";
switch (flags & 3) {
case O_RDONLY:
std::cerr << "O_RDONLY";
break;
case O_WRONLY:
std::cerr << "O_WRONLY";
break;
case O_RDWR:
std::cerr << "O_RDWR";
break;
default:
std::cerr << "unknown";
}
std::cerr << "===\n";
}
bool has_unprintable(const std::string &value) {
for (size_t i = 0; i < value.length(); i++) {
if (value[i] & 0x80) {
return true;
}
}
return false;
}
void inspect_for_arbitrary_file_open(pid_t pid, const user_regs_struct ®s) {
// Inspect a PID's register for the sign of arbitrary file open.
static bool is_enabled = check_enabled("arbitrary_file_open");
if (not is_enabled)
return;
std::string path = read_string(pid, regs.rsi, kRootDirMaxLength);
if (!path.length()) {
return;
}
if (path.substr(0, kFzAbsoluteDirectory.length()) == kFzAbsoluteDirectory) {
log_file_open(path, regs.rdx, pid);
return;
}
if (path[0] == '/' && path.length() > 1) {
std::string path_absolute_topdir = path;
size_t root_dir_end = path.find('/', 1);
if (root_dir_end != std::string::npos) {
path_absolute_topdir = path.substr(0, root_dir_end);
}
if (has_unprintable(path_absolute_topdir)) {
struct stat dirstat;
if (stat(path_absolute_topdir.c_str(), &dirstat) != 0) {
log_file_open(path, regs.rdx, pid);
}
}
}
}
std::string read_evil_link_bombfile() {
const std::ifstream bombfile(kEvilLinkBombfile,
std::ios_base::binary);
if (bombfile.fail())
return "";
std::stringstream stream;
stream << bombfile.rdbuf();
return stream.str();
}
// https://oss-fuzz.com/testcase-detail/4882113260552192
void report_bug_in_process(std::string bug_type, pid_t pid) {
std::cerr << "===BUG DETECTED: " << bug_type << "===" << std::endl;
tgkill(root_pids[pid].parent_tid, pid, SIGABRT);
}
void inspect_for_evil_link(pid_t pid, const user_regs_struct ®s) {
(void) regs;
static bool is_enabled = check_enabled("malicious_symlink_following");
if (not is_enabled)
return;
std::string contents = read_evil_link_bombfile();
if ((contents.compare(kEvilLinkBombfileContents)) != 0) {
report_bug_in_process(kEvilLinkError, pid);
}
}
void evil_openat_hook(pid_t pid, const user_regs_struct ®s) {
static bool is_enabled = check_enabled("malicious_symlink_following");
if (not is_enabled)
return;
std::string path = read_string(pid, regs.rsi, kPathMax);
if (!path.length()) {
return;
}
if (std::filesystem::exists(path))
return;
size_t slash_idx = path.rfind('/');
if (slash_idx == std::string::npos)
return;
std::string dir = path.substr(0, slash_idx);
if ((dir.compare("/tmp")) != 0)
return;
std::string command = "rm -f " + path + " && ln -s " + kEvilLinkBombfile + " " + path;
std::cout << "COMMAND " << command << std::endl;
system(command.c_str());
}
void initialize_evil_link_bombfile() {
std::string command = ("printf " + kEvilLinkBombfileContents + " > " +
kEvilLinkBombfile);
std::cout << "COMMAND " << command << std::endl;
system(command.c_str());
system(("cat " + kEvilLinkBombfile).c_str());
}
int trace(std::map<pid_t, Tracee> pids) {
unsigned long exit_status = 0;
while (!pids.empty()) {
std::vector<pid_t> new_pids;
auto it = pids.begin();
while (it != pids.end()) {
auto pid = it->first;
auto &tracee = it->second;
int status = 0;
int result = waitpid(pid, &status, __WALL | WNOHANG);
if (result == -1) {
it = pids.erase(it);
continue;
}
if (result == 0) {
// Nothing to report yet.
++it;
continue;
}
if (WIFEXITED(status) || WIFSIGNALED(status)) {
debug_log("%d exited", pid);
it = pids.erase(it);
// Remove pid from the watchlist when it exits
g_shell_pids.erase(pid);
root_pids.erase(pid);
continue;
}
// ptrace sets 0x80 for syscalls (with PTRACE_O_TRACESYSGOOD set).
bool is_syscall =
WIFSTOPPED(status) && WSTOPSIG(status) == (SIGTRAP | 0x80);
int sig = 0;
if (!is_syscall) {
// Handle generic signal.
siginfo_t siginfo;
if (ptrace(PTRACE_GETSIGINFO, pid, nullptr, &siginfo) == -1) {
debug_log("ptrace(PTRACE_GETSIGINFO, %d): %s", pid, strerror(errno));
continue;
}
sig = siginfo.si_signo;
debug_log("forwarding signal %d to %d", sig, pid);
}
if ((status >> 8 == (SIGTRAP | (PTRACE_EVENT_EXIT << 8)))) {
debug_log("%d exiting", pid);
if (pid == g_root_pid) {
if (ptrace(PTRACE_GETEVENTMSG, pid, 0, &exit_status) == -1) {
debug_log("ptrace(PTRACE_GETEVENTMSG, %d): %s", pid, strerror(errno));
}
debug_log("got exit status from root process: %lu", exit_status);
}
if (ptrace(PTRACE_DETACH, pid, 0, 0) == -1) {
debug_log("ptrace(PTRACE_DETACH, %d): %s", pid, strerror(errno));
}
continue;
}
if (WIFSTOPPED(status) &&
(status >> 8 == (SIGTRAP | (PTRACE_EVENT_CLONE << 8)) ||
status >> 8 == (SIGTRAP | (PTRACE_EVENT_FORK << 8)) ||
status >> 8 == (SIGTRAP | (PTRACE_EVENT_VFORK << 8)))) {
long new_pid;
if (ptrace(PTRACE_GETEVENTMSG, pid, 0, &new_pid) == -1) {
debug_log("ptrace(PTRACE_GETEVENTMSG, %d): %s", pid, strerror(errno));
continue;
}
debug_log("forked %ld", new_pid);
new_pids.push_back(new_pid);
root_pids.emplace(new_pid, ThreadParent(pid));
}
if (is_syscall) {
user_regs_struct regs;
if (ptrace(PTRACE_GETREGS, pid, 0, ®s) == -1) {
debug_log("ptrace(PTRACE_GETREGS, %d): %s", pid, strerror(errno));
continue;
}
if (tracee.syscall_enter) {
if (regs.orig_rax == __NR_execve) {
// This is a new process.
auto parent = root_pids[pid];
parent.ran_exec = true;
root_pids[pid] = parent;
inspect_for_injection(pid, regs);
std::string shell = get_shell(pid, regs);
if (shell != "") {
debug_log("Shell parsed: %s", shell.c_str());
g_shell_pids.insert(std::make_pair(pid, shell));
}
}
inspect_dns_syscalls(pid, regs);
if (regs.orig_rax == __NR_openat) {
// TODO(metzman): Re-enable this once we have config/flag support.
// inspect_for_arbitrary_file_open(pid, regs);
evil_openat_hook(pid, regs);
}
if (regs.orig_rax == __NR_close) {
// TODO(metzman): Re-enable this once we have config/flag support.
// inspect_for_arbitrary_file_open(pid, regs);
inspect_for_evil_link(pid, regs);
}
if (regs.orig_rax == __NR_write &&
g_shell_pids.find(pid) != g_shell_pids.end()) {
debug_log("Inspecting the `write` buffer of shell process %d.",
pid);
inspect_for_corruption(pid, regs);
}
}
// TODO: Check for commands with invalid syntax passed to /bin/sh and
// other shells.
// TODO: It's possible the process we're fuzzing can communicate with
// another process to execute code. Our check wouldn't catch this
// currently.
tracee.syscall_enter = !tracee.syscall_enter;
}
if (ptrace(PTRACE_SYSCALL, pid, nullptr, sig) == -1) {
debug_log("ptrace(PTRACE_SYSCALL, %d): %s", pid, strerror(errno));
continue;
}
++it;
}
for (const auto &pid : new_pids) {
pids.emplace(pid, Tracee(pid));
}
}
return static_cast<int>(exit_status >> 8);
}
int main(int argc, char **argv) {
if (argc <= 1) {
fatal_log("Expecting at least one arguments, received %d", argc - 1);
}
initialize_evil_link_bombfile();
// Create an executable tripwire file, as programs may check for existence
// before actually calling exec.
std::ofstream tripwire(kTripWire);
tripwire.close();
chmod(kTripWire.c_str(), 0755);
pid_t pid = run_child(argv + 1);
long options = PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEFORK |
PTRACE_O_TRACEVFORK | PTRACE_O_TRACECLONE |
PTRACE_O_TRACEEXIT;
if (ptrace(PTRACE_SEIZE, pid, nullptr, options) == -1) {
fatal_log("ptrace(PTRACE_SEIZE): %s", strerror(errno));
}
if (waitpid(pid, nullptr, __WALL) == -1) {
fatal_log("waitpid: %s", strerror(errno));
}
if (ptrace(PTRACE_SYSCALL, pid, 0, 0) == -1) {
fatal_log("ptrace(PTRACE_SYSCALL): %s", strerror(errno));
}
g_root_pid = pid;
std::map<pid_t, Tracee> pids;
pids.emplace(pid, Tracee(pid));
root_pids.emplace(pid, ThreadParent(pid));
return trace(pids);
}