mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-14 23:43:56 +01:00
40 lines
827 B
Plaintext
40 lines
827 B
Plaintext
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/nmap
|
|
profile nmap @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/openssl>
|
|
|
|
capability net_raw,
|
|
capability net_bind_service,
|
|
|
|
signal (receive) set=(term, kill) peer=zenmap,
|
|
|
|
network inet dgram,
|
|
network inet6 dgram,
|
|
network inet raw,
|
|
network inet6 raw,
|
|
network netlink raw,
|
|
network packet raw,
|
|
|
|
@{exec_path} r,
|
|
|
|
owner @{PROC}/@{pid}/net/dev r,
|
|
owner @{PROC}/@{pid}/net/if_inet6 r,
|
|
|
|
/usr/share/nmap/** r,
|
|
|
|
owner /tmp/zenmap-stdout-* rw,
|
|
owner /tmp/zenmap-*.xml rw,
|
|
|
|
include if exists <local/nmap>
|
|
}
|