feat: Update 70-secureblue.just to include ipc perm check in audit script (#495)

Co-authored-by: RoyalOughtness <129108030+RoyalOughtness@users.noreply.github.com>
This commit is contained in:
spaceoden
2024-10-30 20:01:05 -08:00
committed by GitHub
parent f14f58f9d8
commit 74867bdc40

View File

@@ -645,6 +645,10 @@ audit-secureblue:
status="$STATUS_FAILURE" status="$STATUS_FAILURE"
warnings+=("> $f has ptrace access!") warnings+=("> $f has ptrace access!")
fi fi
if hasPermission "$permissions" "shared" "ipc"; then
status="$STATUS_FAILURE"
warnings+=("> $f has inter-proccess communications access!")
fi
flatpak_test_string="Auditing $f" flatpak_test_string="Auditing $f"
print_status "$flatpak_test_string" "$status" print_status "$flatpak_test_string" "$status"
for warning in "${warnings[@]}"; do for warning in "${warnings[@]}"; do