hacktricks/linux-unix/privilege-escalation/seccomp.md
2023-07-07 23:42:27 +00:00

10 KiB
Raw Blame History

☁️ HackTricks Cloud ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥

基本情報

Seccompまたはセキュアコンピューティングモードは、要約すると、シスコールフィルタとして機能するLinuxカーネルの機能です。
Seccompには2つのモードがあります。

seccomp(セキュアコンピューティングモードの略)は、Linuxカーネルのコンピュータセキュリティ機能です。seccompを使用すると、プロセスは「セキュア」な状態に一方向で移行し、既に開かれているファイルディスクリプタに対してexit()sigreturn()read()write()以外のシステムコールを行うことはできません。他のシステムコールを試みると、カーネルはSIGKILLまたはSIGSYSでプロセスを終了します。この意味では、システムのリソースを仮想化するのではなく、プロセスをそれらから完全に分離します。

seccompモードは、prctl(2)システムコールを使用してPR_SET_SECCOMP引数を介して有効にされます。またはLinuxカーネル3.17以降)seccomp(2)システムコールを介して有効にされます。seccompモードは、一部のカーネルバージョンでは、高精度タイミングに使用される、電源オンからの経過したプロセッササイクル数を返すRDTSC x86命令を無効にします。

seccomp-bpfは、Berkeley Packet Filterルールを使用して実装された設定可能なポリシーを使用してシステムコールをフィルタリングするseccompの拡張機能です。これは、OpenSSHやvsftpd、Chrome OSおよびLinux上のGoogle Chrome/Chromiumウェブブラウザなどで使用されています。この点で、seccomp-bpfは、Linuxではもはやサポートされていないようですが、より柔軟性と高いパフォーマンスを持つ古いsystraceと同様の機能を実現します。

オリジナル/厳格モード

このモードでは、Seccompはexit()sigreturn()read()write()のシスコールのみを許可します。他のシスコールが行われると、プロセスはSIGKILLを使用して終了します。

{% code title="seccomp_strict.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)
{
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");
}

Seccomp-bpf

このモードでは、Berkeley Packet Filter ルールを使用して設定可能なポリシーを実装することで、システムコールのフィルタリングが可能です。

{% code title="seccomp_bpf.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) {
/* 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());
}

{% endcode %}

DockerにおけるSeccomp

Seccomp-bpfは、Dockerでサポートされており、コンテナからのsyscallsを制限することで、効果的に表面積を減らすことができます。デフォルトでブロックされるsyscallsは、https://docs.docker.com/engine/security/seccomp/で見つけることができ、デフォルトのseccompプロファイルはhttps://github.com/moby/moby/blob/master/profiles/seccomp/default.jsonで見つけることができます。
異なるseccompポリシーを持つdockerコンテナを実行するには、次のコマンドを使用します

docker run --rm \
-it \
--security-opt seccomp=/path/to/seccomp/profile.json \
hello-world

たとえば、unameのような特定のシステムコールを実行できないようにする場合、https://github.com/moby/moby/blob/master/profiles/seccomp/default.jsonからデフォルトのプロファイルをダウンロードし、リストからunameの文字列を削除するだけです。
あるバイナリがDockerコンテナ内で動作しないようにするには、straceを使用してバイナリが使用しているシステムコールをリストアップし、それらを禁止します。
次の例では、unameのシステムコールが発見されます。

docker run -it --security-opt seccomp=default.json modified-ubuntu strace uname

{% hint style="info" %} アプリケーションを起動するためにDockerを使用している場合は、straceを使用してそれをプロファイルし、必要なシスコールのみを許可することができます。 {% endhint %}

Dockerで無効にする

フラグ**--security-opt seccomp=unconfined**を使用してコンテナを起動します。

☁️ HackTricks Cloud ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥