Gentoo Archives: gentoo-portage-dev

From: Michael Orlitzky <mjo@g.o>
To: gentoo-portage-dev@l.g.o
Subject: [gentoo-portage-dev] [PATCH 2/2] bin/install-qa-check.d: add new 90bad-bin-group-write QA check.
Date: Mon, 30 Jul 2018 00:17:45
Message-Id: 20180730001730.19257-3-mjo@gentoo.org
In Reply to: [gentoo-portage-dev] [PATCH v2 0/2] Two insecure ownership and group-writability QA checks. by Michael Orlitzky
1 System executables that are writable by a non-root user pose a
2 security risk. Anyone who can write to an executable can change its
3 behavior. If that executable is later run with elevated privileges
4 (say, by root, when the machine starts), then the non-root user can
5 escalate his own privileges to those of the person running the
6 modified executable.
7
8 The 90bad-bin-owner check already addresses one cause for a non-root
9 user to be able to modify an executable: because he owns it. This
10 commit adds another check, to ensure that no non-root *groups* have
11 write access to any system executables. On a "normal" system, all
12 system executables should belong to the super-user's group. To avoid
13 false-positives, non-"normal" systems (like prefix) are skipped.
14
15 Closes: https://bugs.gentoo.org/629398
16 ---
17 bin/install-qa-check.d/90bad-bin-group-write | 49 ++++++++++++++++++++++++++++
18 1 file changed, 49 insertions(+)
19 create mode 100644 bin/install-qa-check.d/90bad-bin-group-write
20
21 diff --git a/bin/install-qa-check.d/90bad-bin-group-write b/bin/install-qa-check.d/90bad-bin-group-write
22 new file mode 100644
23 index 000000000..3c5021e0d
24 --- /dev/null
25 +++ b/bin/install-qa-check.d/90bad-bin-group-write
26 @@ -0,0 +1,49 @@
27 +# Copyright 1999-2018 Gentoo Foundation
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +bad_bin_group_write_check() {
31 + # Warn about globally-installed executables (in /bin, /usr/bin, /sbin,
32 + # /usr/sbin, or /opt/bin) that are group-writable by a nonzero GID.
33 +
34 + # This check doesn't work on non-root prefix installations at
35 + # the moment, because every executable therein is owned by a
36 + # nonzero GID.
37 + [[ "${EUID}" -ne "0" || "${PORTAGE_INST_UID}" -ne "0" ]] && return
38 +
39 + local d f found=()
40 +
41 + for d in "${ED%/}/opt/bin" "${ED%/}/bin" "${ED%/}/usr/bin" \
42 + "${ED%/}/sbin" "${ED%/}/usr/sbin"; do
43 + [[ -d "${d}" ]] || continue
44 +
45 + # Read the results of the "find" command into the "found" bash
46 + # array. Use -L to catch symlinks whose targets are vulnerable,
47 + # even though it won't catch ABSOLUTE symlinks until the package
48 + # is RE-installed (the first time around, the target won't exist).
49 + # We match the GID and not the name "root" here because (for
50 + # example) on FreeBSD, the superuser group is "wheel".
51 + # We avoid listing setgid executables because -- even though they're
52 + # super sketchy -- their non-root group is intentional.
53 + while read -r -d '' f; do
54 + found+=( "${f}" )
55 + done < <(find -L "${d}" \
56 + -maxdepth 1 \
57 + -type f \
58 + -perm /g+w \
59 + ! -gid 0 \
60 + ! -perm -2000 \
61 + -print0)
62 + done
63 +
64 + if [[ ${found[@]} ]]; then
65 + eqawarn "system executables group-writable by nonzero gid:"
66 + for f in "${found[@]}"; do
67 + # Strip off the leading destdir before outputting the path,
68 + # but leave the prefix if there is one.
69 + eqawarn " ${f#${D%/}/}"
70 + done
71 + fi
72 +}
73 +
74 +bad_bin_group_write_check
75 +:
76 --
77 2.16.4