New group for /dev/cuse. Unlike /dev/fuse, we don't want this device to be world-accessible because of potential security concerns, starting with the fact that CUSE is not widely tested, and ending with CVE-2016-1233 which indicates that programs using CUSE can modify memory of processes opening CUSE devices.
Signed-off-by: Michał Górny <[email protected]> --- acct-group/cuse/cuse-0.ebuild | 8 ++++++++ acct-group/cuse/metadata.xml | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 acct-group/cuse/cuse-0.ebuild create mode 100644 acct-group/cuse/metadata.xml diff --git a/acct-group/cuse/cuse-0.ebuild b/acct-group/cuse/cuse-0.ebuild new file mode 100644 index 0000000000000..2120c5a55a750 --- /dev/null +++ b/acct-group/cuse/cuse-0.ebuild @@ -0,0 +1,8 @@ +# Copyright 2019-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit acct-group + +ACCT_GROUP_ID=554 diff --git a/acct-group/cuse/metadata.xml b/acct-group/cuse/metadata.xml new file mode 100644 index 0000000000000..076793e3f54be --- /dev/null +++ b/acct-group/cuse/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Michał Górny</name> + </maintainer> +</pkgmetadata>
