mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
afdf16b714
(cherry picked from commit 131131e58fc66365854f37f4fe2bf6ca01c8aed6)
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.security.apparmor;
|
|
in
|
|
with lib;
|
|
{
|
|
|
|
options.security.apparmor.confineSUIDApplications = mkOption {
|
|
default = true;
|
|
description = ''
|
|
Install AppArmor profiles for commonly-used SUID application
|
|
to mitigate potential privilege escalation attacks due to bugs
|
|
in such applications.
|
|
|
|
Currently available profiles: ping
|
|
'';
|
|
};
|
|
|
|
config = mkIf (cfg.confineSUIDApplications) {
|
|
security.apparmor.profiles = [ (pkgs.writeText "ping" ''
|
|
#include <tunables/global>
|
|
/run/wrappers/bin/ping {
|
|
#include <abstractions/base>
|
|
#include <abstractions/consoles>
|
|
#include <abstractions/nameservice>
|
|
|
|
capability net_raw,
|
|
capability setuid,
|
|
network inet raw,
|
|
|
|
${pkgs.stdenv.cc.libc.out}/lib/*.so mr,
|
|
${pkgs.libcap.lib}/lib/libcap.so* mr,
|
|
${pkgs.attr.out}/lib/libattr.so* mr,
|
|
|
|
${pkgs.iputils}/bin/ping mixr,
|
|
|
|
#/etc/modules.conf r,
|
|
|
|
## Site-specific additions and overrides. See local/README for details.
|
|
##include <local/bin.ping>
|
|
}
|
|
'') ];
|
|
};
|
|
|
|
}
|