From 012fa05e8f04e3c97e0a148f8aa6f04733c0e064 Mon Sep 17 00:00:00 2001 From: fedir Date: Wed, 11 Jun 2025 19:59:28 +0200 Subject: [PATCH] Updated README --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 2ede99b..c9cb989 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ + # ICFS -- Interactively Controlled File System +> [!IMPORTANT] +> If you need the version that correponds to the thesis attachment, go [here](https://git.umbrasolis.de/fedir/ICFS/src/commit/2f4f1a0a569704b770f50b3e7cf39c09b9b8381a). This version contains corrections that the opponent brought to my attention. + ## Motivation Traditional access control mechanisms in operating systems allow the same level of access to all processes running on behalf of the same user. This typically enables malicious processes to read and/or modify all data accessible to the user running a vulnerable application. It can be dealt using various mandatory access control mechanisms, but these are often complicated to configure and are rarely used in common user oriented scenarios. This thesis focuses on design and implementation of a file system layer which delegates the decision to allow or deny access to a file system object by a specific process to the user. @@ -15,6 +19,10 @@ Traditional access control mechanisms in operating systems allow the same level - Install dependencies - libfuse3 - Debian: `sudo apt install fuse3 libfuse3-dev` + - SQLite3 + - Debian: `sudo apt install libsqlite3-dev` + - GTK4, libadwaita + - Debian: `sudo apt install libgtk-4-dev libadwaita-dev` - Build tools - Debian: `sudo apt install gcc make pkg-config` - Build using `make`: