hacktricks/linux-unix/privilege-escalation/seccomp.md

155 lines
8 KiB
Markdown
Raw Normal View History

2022-04-28 16:01:33 +00:00
<details>
<summary><strong>零基础学习AWS黑客攻击到高手</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS红队专家)</strong></a><strong></strong></summary>
2022-04-28 16:01:33 +00:00
支持HackTricks的其他方式
2022-04-28 16:01:33 +00:00
* 如果您想在**HackTricks中看到您的公司广告**或**下载HackTricks的PDF**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)
* 获取[**官方PEASS & HackTricks商品**](https://peass.creator-spring.com)
* 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们独家的[**NFTs系列**](https://opensea.io/collection/the-peass-family)
* **加入** 💬 [**Discord群组**](https://discord.gg/hRep4RUj7f) 或 [**telegram群组**](https://t.me/peass) 或在**Twitter** 🐦 [**@carlospolopm**](https://twitter.com/carlospolopm)上**关注我**。
* **通过向** [**HackTricks**](https://github.com/carlospolop/hacktricks) 和 [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github仓库提交PR来**分享您的黑客技巧**。
2022-04-28 16:01:33 +00:00
</details>
2023-08-03 19:12:22 +00:00
# 基本信息
**Seccomp** 或安全计算模式简而言之是Linux内核的一个特性可以作为**系统调用过滤器**。
2023-08-03 19:12:22 +00:00
Seccomp有两种模式。
**seccomp**(即**安全计算模式**)是**Linux** **内核**中的一项计算机安全设施。seccomp允许进程一次性过渡到一个“安全”状态在该状态下**它除了** `exit()`、`sigreturn()`、`read()` 和 `write()` 对**已打开**文件描述符之外,**不能进行任何系统调用**。如果尝试进行任何其他系统调用,**内核**将使用SIGKILL或SIGSYS**终止**该**进程**。从这个意义上说,它不是虚拟化系统资源,而是完全隔离进程与它们。
2021-10-10 21:46:47 +00:00
seccomp模式是**通过使用`PR_SET_SECCOMP`参数的`prctl(2)`系统调用启用的**或者自Linux内核3.17版本起)通过`seccomp(2)`系统调用启用。seccomp模式过去是通过写入一个文件`/proc/self/seccomp`来启用的,但这种方法已被`prctl()`取代。在某些内核版本中seccomp禁用了`RDTSC` x86指令该指令返回自开机以来经过的处理器周期数用于高精度计时。
2021-10-10 21:46:47 +00:00
**seccomp-bpf** 是seccomp的扩展允许**使用可配置策略过滤系统调用**该策略使用伯克利数据包过滤器规则实现。它被OpenSSH和vsftpd以及Chrome OS和Linux上的Google Chrome/Chromium网络浏览器使用。在这方面seccomp-bpf实现了类似的功能但具有更大的灵活性和更高的性能与较旧的systrace相比——后者似乎不再支持Linux。
2021-10-10 21:46:47 +00:00
2023-08-03 19:12:22 +00:00
## **原始/严格模式**
在这种模式下,**Seccomp** **只允许系统调用** `exit()`、`sigreturn()`、`read()` 和 `write()` 到已打开的文件描述符。如果进行任何其他系统调用进程将使用SIGKILL被杀死。
2021-10-10 21:46:47 +00:00
{% code title="seccomp_strict.c" %}
```c
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <linux/seccomp.h>
#include <sys/prctl.h>
//From https://sysdig.com/blog/selinux-seccomp-falco-technical-discussion/
//gcc seccomp_strict.c -o seccomp_strict
int main(int argc, char **argv)
{
2023-08-03 19:12:22 +00:00
int output = open("output.txt", O_WRONLY);
const char *val = "test";
//enables strict seccomp mode
printf("Calling prctl() to set seccomp strict mode...\n");
prctl(PR_SET_SECCOMP, SECCOMP_MODE_STRICT);
//This is allowed as the file was already opened
printf("Writing to an already open file...\n");
write(output, val, strlen(val)+1);
//This isn't allowed
printf("Trying to open file for reading...\n");
int input = open("output.txt", O_RDONLY);
printf("You will not see this message--the process will be killed first\n");
}
```
{% endcode %}
2022-05-01 12:41:36 +00:00
## Seccomp-bpf
此模式允许**使用可配置策略过滤系统调用**,该策略使用 Berkeley Packet Filter 规则实现。
2021-10-10 21:46:47 +00:00
{% code title="seccomp_bpf.c" %}
```c
#include <seccomp.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
//https://security.stackexchange.com/questions/168452/how-is-sandboxing-implemented/175373
//gcc seccomp_bpf.c -o seccomp_bpf -lseccomp
void main(void) {
2023-08-03 19:12:22 +00:00
/* initialize the libseccomp context */
scmp_filter_ctx ctx = seccomp_init(SCMP_ACT_KILL);
/* allow exiting */
printf("Adding rule : Allow exit_group\n");
seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(exit_group), 0);
/* allow getting the current pid */
//printf("Adding rule : Allow getpid\n");
//seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(getpid), 0);
printf("Adding rule : Deny getpid\n");
seccomp_rule_add(ctx, SCMP_ACT_ERRNO(EBADF), SCMP_SYS(getpid), 0);
/* allow changing data segment size, as required by glibc */
printf("Adding rule : Allow brk\n");
seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(brk), 0);
/* allow writing up to 512 bytes to fd 1 */
printf("Adding rule : Allow write upto 512 bytes to FD 1\n");
seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(write), 2,
SCMP_A0(SCMP_CMP_EQ, 1),
SCMP_A2(SCMP_CMP_LE, 512));
/* if writing to any other fd, return -EBADF */
printf("Adding rule : Deny write to any FD except 1 \n");
seccomp_rule_add(ctx, SCMP_ACT_ERRNO(EBADF), SCMP_SYS(write), 1,
SCMP_A0(SCMP_CMP_NE, 1));
/* load and enforce the filters */
printf("Load rules and enforce \n");
seccomp_load(ctx);
seccomp_release(ctx);
//Get the getpid is denied, a weird number will be returned like
//this process is -9
printf("this process is %d\n", getpid());
}
```
# Docker 中的 Seccomp
2021-01-07 16:33:00 +00:00
**Seccomp-bpf** 被 **Docker** 支持,用于有效限制容器中的 **syscalls**,从而减少了攻击面。你可以在 [https://docs.docker.com/engine/security/seccomp/](https://docs.docker.com/engine/security/seccomp/) 找到 **默认情况下被阻止的 syscalls**,而 **默认的 seccomp 配置文件** 可以在这里找到 [https://github.com/moby/moby/blob/master/profiles/seccomp/default.json](https://github.com/moby/moby/blob/master/profiles/seccomp/default.json)。\
你可以使用以下命令,用**不同的 seccomp** 策略来运行一个 docker 容器:
2021-01-07 16:33:00 +00:00
```bash
docker run --rm \
2023-08-03 19:12:22 +00:00
-it \
--security-opt seccomp=/path/to/seccomp/profile.json \
hello-world
2021-01-07 16:33:00 +00:00
```
如果您想要禁止容器执行某些**系统调用**,例如`uname`,您可以从[https://github.com/moby/moby/blob/master/profiles/seccomp/default.json](https://github.com/moby/moby/blob/master/profiles/seccomp/default.json)下载默认配置文件,然后从列表中**删除`uname`字符串**。\
如果您想确保**某个二进制文件在docker容器内不工作**您可以使用strace列出二进制文件正在使用的系统调用然后禁止它们。\
在以下示例中,发现了`uname`的**系统调用**
2021-01-07 16:33:00 +00:00
```bash
2021-06-22 22:41:24 +00:00
docker run -it --security-opt seccomp=default.json modified-ubuntu strace uname
2021-01-07 16:33:00 +00:00
```
2021-10-10 22:24:28 +00:00
{% hint style="info" %}
如果您**仅使用 Docker 来启动应用程序**,您可以使用 **`strace`** 对其进行**分析**,并**仅允许它需要的系统调用**
2021-10-10 22:24:28 +00:00
{% endhint %}
## 在 Docker 中停用它
2021-10-10 21:46:47 +00:00
使用标志启动容器:**`--security-opt seccomp=unconfined`**
2022-04-28 16:01:33 +00:00
<details>
<summary><strong>从零开始学习 AWS 黑客攻击直到成为专家,通过</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS 红队专家)</strong></a><strong></strong></summary>
2022-04-28 16:01:33 +00:00
支持 HackTricks 的其他方式:
2022-04-28 16:01:33 +00:00
* 如果您想在 HackTricks 中看到您的**公司广告**或**下载 HackTricks 的 PDF**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)
* 获取[**官方 PEASS & HackTricks 商品**](https://peass.creator-spring.com)
* 发现[**PEASS 家族**](https://opensea.io/collection/the-peass-family),我们独家的[**NFT 集合**](https://opensea.io/collection/the-peass-family)
* **加入** 💬 [**Discord 群组**](https://discord.gg/hRep4RUj7f) 或 [**telegram 群组**](https://t.me/peass) 或在 **Twitter** 🐦 上**关注**我 [**@carlospolopm**](https://twitter.com/carlospolopm)**。**
* **通过向 [**HackTricks**](https://github.com/carlospolop/hacktricks) 和 [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github 仓库提交 PR 来分享您的黑客技巧。**
2022-04-28 16:01:33 +00:00
</details>