36 lines
690 B
Text
36 lines
690 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# Copyright (C) 2022-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/nft
|
|
profile nft @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
capability net_admin,
|
|
|
|
network netlink raw,
|
|
|
|
ptrace (read),
|
|
|
|
@{exec_path} mr,
|
|
|
|
/usr/share/iproute2/{,**} r,
|
|
|
|
/etc/iproute2/** r,
|
|
/etc/nftables.conf r,
|
|
/etc/nftables/{,**} r,
|
|
|
|
@{PROC}/1/environ r,
|
|
@{PROC}/cmdline r,
|
|
@{PROC}/sys/kernel/osrelease r,
|
|
|
|
include if exists <local/nft>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|