mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-14 23:43:56 +01:00
34 lines
725 B
Plaintext
34 lines
725 B
Plaintext
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Mikhail Morfikov
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/ssh
|
|
profile ssh @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/openssl>
|
|
|
|
network inet stream,
|
|
network inet6 stream,
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
|
|
owner @{HOME}/.ssh/ r,
|
|
owner @{HOME}/.ssh/config r,
|
|
owner @{HOME}/.ssh/known_hosts r,
|
|
owner @{HOME}/.ssh/*_rsa{,.pub} r,
|
|
owner @{HOME}/.ssh/*_ed25519{,.pub} r,
|
|
|
|
/etc/ssh/ssh_config r,
|
|
/etc/ssh/ssh_config.d/ r,
|
|
|
|
include if exists <local/ssh>
|
|
}
|