PATH:
usr
/
sbin
#!/bin/bash # fixfiles # # Script to restore labels on a SELinux box # # Copyright (C) 2004-2013 Red Hat, Inc. # Authors: Dan Walsh <dwalsh@redhat.com> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # seclabel support was added in 2.6.30. This function will return a positive # number if the current kernel version is greater than 2.6.30, a negative # number if the current is less than 2.6.30 and 0 if they are the same. # function useseclabel { VER=`uname -r` SUP=2.6.30 expr '(' "$VER" : '\([^.]*\)' ')' '-' '(' "$SUP" : '\([^.]*\)' ')' '|' \ '(' "$VER.0" : '[^.]*[.]\([^.]*\)' ')' '-' '(' "$SUP.0" : '[^.]*[.]\([^.]*\)' ')' '|' \ '(' "$VER.0.0" : '[^.]*[.][^.]*[.]\([^.]*\)' ')' '-' '(' "$SUP.0.0" : '[^.]*[.][^.]*[.]\([^.]*\)' ')' } # # Get all mount points that support labeling. Use the 'seclabel' field if it # is available. Else fall back to known fs types which likely support xattrs # and we know were not context mounted. # get_all_labeled_mounts() { FS="`cat /proc/self/mounts | sort | uniq | awk '{print $2}'`" for i in $FS; do if [ `useseclabel` -ge 0 ] then grep " $i " /proc/self/mounts | awk '{print $4}' | egrep --silent '(^|,)seclabel(,|$)' && echo $i else grep " $i " /proc/self/mounts | grep -v "context=" | egrep --silent '(ext[234]| ext4dev | gfs2 | xfs | jfs | btrfs )' && echo $i fi done } get_rw_labeled_mounts() { FS=`get_all_labeled_mounts | sort | uniq` for i in $FS; do grep " $i " /proc/self/mounts | awk '{print $4}' | egrep --silent '(^|,)rw(,|$)' && echo $i done } get_ro_labeled_mounts() { FS=`get_all_labeled_mounts | sort | uniq` for i in $FS; do grep " $i " /proc/self/mounts | awk '{print $4}' | egrep --silent '(^|,)ro(,|$)' && echo $i done } # # Get the default label returned from the kernel for a file with a lable the # kernel does not understand # get_undefined_type() { SELINUXMNT=`grep selinuxfs /proc/self/mountinfo | head -1 | awk '{ print $5 }'` cat ${SELINUXMNT}/initial_contexts/unlabeled | secon -t } # # Get the default label for a file without a label # get_unlabeled_type() { SELINUXMNT=`grep selinuxfs /proc/self/mountinfo | head -1 | awk '{ print $5 }'` cat $SELINUXMNT/initial_contexts/file | secon -t } exclude_dirs_from_relabelling() { exclude_from_relabelling= if [ -e /etc/selinux/fixfiles_exclude_dirs ] then while read i do # skip blank line and comment # skip not absolute path # skip not directory [ -z "${i}" ] && continue [[ "${i}" =~ "^[[:blank:]]*#" ]] && continue [[ ! "${i}" =~ ^/.* ]] && continue [[ ! -d "${i}" ]] && continue exclude_from_relabelling="$exclude_from_relabelling -e $i" logit "skipping the directory $i" done < /etc/selinux/fixfiles_exclude_dirs fi echo "$exclude_from_relabelling" } exclude_dirs() { exclude= for i in /sys /proc /dev /run /mnt /var/tmp /var/lib/BackupPC /home /tmp /dev; do [ -e $i ] && exclude="$exclude -e $i"; done exclude="$exclude `exclude_dirs_from_relabelling`" echo "$exclude" } # # Set global Variables # fullFlag=0 BOOTTIME="" VERBOSE="-p" [ -t 1 ] || VERBOSE="" FORCEFLAG="" DIRS="" RPMILES="" LOGFILE=`tty` if [ $? != 0 ]; then LOGFILE="/dev/null" fi LOGGER=/usr/sbin/logger SETFILES=/sbin/setfiles RESTORECON=/sbin/restorecon FILESYSTEMSRW=`get_rw_labeled_mounts` FILESYSTEMSRO=`get_ro_labeled_mounts` FILESYSTEMS="$FILESYSTEMSRW $FILESYSTEMSRO" SELINUXTYPE="targeted" if [ -e /etc/selinux/config ]; then . /etc/selinux/config FC=/etc/selinux/${SELINUXTYPE}/contexts/files/file_contexts else FC=/etc/security/selinux/file_contexts fi FC_SUB_DIST=${FC}.subs_dist FC_SUB=${FC}.subs FC_HOMEDIRS=${FC}.homedirs FC_LOCAL=${FC}.local # # Log to either syslog or a LOGFILE # logit () { if [ -n $LOGFILE ]; then echo $1 >> $LOGFILE fi } # # Find files newer then the passed in date and fix the label # newer() { DATE=$1 shift for m in `echo $FILESYSTEMSRW`; do find $m -mount -newermt $DATE -print0 2>/dev/null | ${RESTORECON} ${FORCEFLAG} ${VERBOSE} $* -i -0 -f - done; } # # Compare PREVious File Context to currently installed File Context and # run restorecon on all files affected by the differences. # diff_filecontext() { if [ -f ${PREFC} -a -x /usr/bin/diff ]; then TEMPFILE=`mktemp ${FC}.XXXXXXXXXX` test -z "$TEMPFILE" && exit PREFCTEMPFILE=`mktemp ${PREFC}.XXXXXXXXXX` sed -r -e 's,:s0, ,g' $PREFC | sort -u > ${PREFCTEMPFILE} sed -r -e 's,:s0, ,g' $FC | sort -u | \ /usr/bin/diff -b ${PREFCTEMPFILE} - | \ grep '^[<>]'|cut -c3-| grep ^/ | \ egrep -v '(^/home|^/root|^/tmp|^/dev)' |\ sed -r -e 's,[[:blank:]].*,,g' \ -e 's|\(([/[:alnum:]]+)\)\?|{\1,}|g' \ -e 's|([/[:alnum:]])\?|{\1,}|g' \ -e 's|\?.*|*|g' \ -e 's|\{.*|*|g' \ -e 's|\(.*|*|g' \ -e 's|\[.*|*|g' \ -e 's|\.\*.*|*|g' \ -e 's|\.\+.*|*|g' | \ # These two sorts need to be separate commands \ sort -u | \ sort -d | \ while read pattern ; \ do if ! echo "$pattern" | grep -q -f ${TEMPFILE} 2>/dev/null; then \ echo "$pattern"; \ case "$pattern" in *"*") \ echo "$pattern" | sed -e 's,^,^,' -e 's,\*$,,g' >> ${TEMPFILE};; esac; \ fi; \ done | \ ${RESTORECON} ${VERBOSE} -i -f - -R $* `exclude_dirs`; \ rm -f ${TEMPFILE} ${PREFCTEMPFILE} fi } # # Log all Read Only file systems # LogReadOnly() { if [ ! -z "$FILESYSTEMSRO" ]; then logit "Warning: Skipping the following R/O filesystems:" logit "$FILESYSTEMSRO" fi } rpmlist() { rpm -q --qf '[%{FILESTATES} %{FILENAMES}\n]' "$1" | grep '^0 ' | cut -f2- -d ' ' [ ${PIPESTATUS[0]} != 0 ] && echo "$1 not found" >/dev/stderr } # # restore # if called with -n will only check file context # restore () { OPTION=$1 shift if [ ! -z "$PREFC" ]; then diff_filecontext $* exit $? fi if [ ! -z "$BOOTTIME" ]; then newer $BOOTTIME $* exit $? fi [ -x /usr/sbin/genhomedircon ] && /usr/sbin/genhomedircon LogReadOnly # exclude_dirs="`exclude_dirs_from_relabelling $OPTION`" if [ -n "${exclude_dirs}" ] then TEMPFCFILE=`mktemp ${FC}.XXXXXXXXXX` test -z "$TEMPFCFILE" && exit /bin/cp -p ${FC} ${TEMPFCFILE} &>/dev/null || exit tmpdirs=${tempdirs//-e/} for p in ${tmpdirs} do p="${p%/}" p1="${p}(/.*)? -- <<none>>" echo "${p1}" >> $TEMPFCFILE logit "skipping the directory ${p}" done FC=$TEMPFCFILE /bin/cp -p ${FC_SUB_DIST} ${TEMPFCFILE}.subs_dist &>/dev/null || exit /bin/cp -p ${FC_SUB} ${TEMPFCFILE}.subs &>/dev/null || exit /bin/cp -p ${FC_HOMEDIRS} ${TEMPFCFILE}.homedirs &>/dev/null || exit # file_contexts.local does not always exist /bin/cp -p ${FC_LOCAL} ${TEMPFCFILE}.local &>/dev/null fi if [ ! -z "$RPMFILES" ]; then for i in `echo "$RPMFILES" | sed 's/,/ /g'`; do rpmlist $i | ${RESTORECON} $exclude_dirs ${FORCEFLAG} ${VERBOSE} $* -R -i -f - 2>&1 | cat >> $LOGFILE done exit $? fi if [ ! -z "$FILEPATH" ]; then ${RESTORECON} $exclude_dirs ${FORCEFLAG} ${VERBOSE} -R $* "$FILEPATH" 2>&1 | cat >> $LOGFILE return fi if [ -n "${FILESYSTEMSRW}" ]; then echo "${OPTION}ing `echo ${FILESYSTEMSRW}`" ${SETFILES} ${VERBOSE} $exclude_dirs -q ${FORCEFLAG} $* ${FC} ${FILESYSTEMSRW} 2>&1 | cat >> $LOGFILE else echo >&2 "fixfiles: No suitable file systems found" fi if [ ${OPTION} != "Relabel" ]; then return fi echo "Cleaning up labels on /tmp" rm -rf /tmp/gconfd-* /tmp/pulse-* /tmp/orbit-* $TEMPFCFILE ${TEMPFCFILE}.subs_dist ${TEMPFCFILE}.subs ${TEMPFCFILE}.homedirs ${TEMPFCFILE}.local UNDEFINED=`get_undefined_type` || exit $? UNLABELED=`get_unlabeled_type` || exit $? find /tmp \( -context "*:${UNLABELED}*" -o -context "*:${UNDEFINED}*" \) \( -type s -o -type p \) -delete find /tmp \( -context "*:${UNLABELED}*" -o -context "*:${UNDEFINED}*" \) -exec chcon --no-dereference --reference /tmp {} \; find /var/tmp \( -context "*:${UNLABELED}*" -o -context "*:${UNDEFINED}*" \) -exec chcon --no-dereference --reference /var/tmp {} \; find /var/run \( -context "*:${UNLABELED}*" -o -context "*:${UNDEFINED}*" \) -exec chcon --no-dereference --reference /var/run {} \; [ ! -e /var/lib/debug ] || find /var/lib/debug \( -context "*:${UNLABELED}*" -o -context "*:${UNDEFINED}*" \) -exec chcon --no-dereference --reference /lib {} \; exit 0 } fullrelabel() { logit "Cleaning out /tmp" find /tmp/ -mindepth 1 -delete LogReadOnly restore Relabel } relabel() { if [ ! -z "$RPMFILES" ]; then restore Relabel fi if [ $fullFlag == 1 ]; then fullrelabel fi echo -n " Files in the /tmp directory may be labeled incorrectly, this command can remove all files in /tmp. If you choose to remove files from /tmp, a reboot will be required after completion. Do you wish to clean out the /tmp directory [N]? " read answer if [ "$answer" = y -o "$answer" = Y ]; then fullrelabel else restore Relabel fi } process() { # # Make sure they specified one of the three valid commands # case "$1" in restore) restore Relabel;; check) VERBOSE="-v"; restore Check -n;; verify) restore Verify -n -o -;; relabel) relabel;; onboot) > /.autorelabel [ -z "$FORCEFLAG" ] || echo -n "$FORCEFLAG " >> /.autorelabel [ -z "$BOOTTIME" ] || echo -N $BOOTTIME >> /.autorelabel # Force full relabel if / does not have a label on it getfilecon / > /dev/null 2>&1 || echo -F >/.autorelabel echo "System will relabel on next boot" ;; *) usage exit 1 esac } usage() { echo $""" Usage: $0 [-v] [-F] [-N time ] [-l logfile ] { check | restore| [-f] relabel | verify } [[dir/file] ... ] or Usage: $0 [-v] [-F] -R rpmpackage[,rpmpackage...] [-l logfile ] { check | restore | verify } or Usage: $0 [-v] [-F] -C PREVIOUS_FILECONTEXT { check | restore | verify } or Usage: $0 [-F] [-B] onboot """ } if [ $# = 0 ]; then usage exit 1 fi # See how we were called. while getopts "N:BC:FfR:l:v" i; do case "$i" in B) BOOTTIME=`/bin/who -b | awk '{print $3}'` ;; f) fullFlag=1 ;; v) VERBOSE="-v" ;; R) RPMFILES=$OPTARG ;; l) LOGFILE=$OPTARG ;; C) PREFC=$OPTARG ;; F) FORCEFLAG="-F" ;; N) BOOTTIME=$OPTARG ;; *) usage exit 1 esac done # Move out processed options from arguments shift $(( OPTIND - 1 )) # Check for the command command=$1 if [ -z $command ]; then usage fi # Move out command from arguments shift # # check if they specified both DIRS and RPMFILES # if [ ! -z "$RPMFILES" ]; then process $command if [ $# -gt 0 ]; then usage fi else if [ -z "$1" ]; then process $command else while [ -n "$1" ]; do FILEPATH=$1 process $command shift done fi fi exit $?
[+]
..
[-] poweroff
[edit]
[-] sulogin
[edit]
[-] ppp-watch
[edit]
[-] addpart
[edit]
[-] kpartx
[edit]
[-] tcsd
[edit]
[-] rsyslogd
[edit]
[-] xfs_freeze
[edit]
[-] selinuxconlist
[edit]
[-] sendmail_bitninja
[edit]
[-] nl-qdisc-add
[edit]
[-] dnssec-coverage
[edit]
[-] btrfs
[edit]
[-] genrandom
[edit]
[-] lsmod
[edit]
[-] readprofile
[edit]
[-] suexec
[edit]
[-] blkdeactivate
[edit]
[-] usermod
[edit]
[-] nl-link-list
[edit]
[-] mkdict
[edit]
[-] xtables-multi
[edit]
[-] rndc
[edit]
[-] fsck.btrfs
[edit]
[-] init
[edit]
[-] service
[edit]
[-] saslauthd
[edit]
[-] tcpdump
[edit]
[-] dovecot
[edit]
[-] rndc-confgen
[edit]
[-] fsck.ext2
[edit]
[-] nfsstat
[edit]
[-] routef
[edit]
[-] xfs_rtcp
[edit]
[-] rtmon
[edit]
[-] ddns-confgen
[edit]
[-] dovecot_cpshutdown
[edit]
[-] vigr
[edit]
[-] e4defrag
[edit]
[-] pure-authd
[edit]
[-] showmount
[edit]
[-] eapol_test
[edit]
[-] biosdecode
[edit]
[-] yumdb
[edit]
[-] depmod
[edit]
[-] ctstat
[edit]
[-] dracut
[edit]
[-] xfs_copy
[edit]
[-] genl-ctrl-list
[edit]
[-] pwconv
[edit]
[-] selabel_partial_match
[edit]
[-] iotop
[edit]
[-] arp-scan
[edit]
[-] iptables
[edit]
[-] gssproxy
[edit]
[-] exim_lock
[edit]
[-] tsig-keygen
[edit]
[-] pure-config.pl
[edit]
[-] firewalld
[edit]
[-] debugfs
[edit]
[-] ifenslave
[edit]
[-] e2freefrag
[edit]
[-] auditd
[edit]
[-] mkfs.ext3
[edit]
[-] tracepath
[edit]
[-] findfs
[edit]
[-] quotaon
[edit]
[-] rpc.mountd
[edit]
[-] fcgistarter
[edit]
[-] capsh
[edit]
[-] atopacctd
[edit]
[-] update-smart-drivedb
[edit]
[-] selabel_digest
[edit]
[-] lusermod
[edit]
[-] bitninjacli-interactive
[edit]
[-] setquota
[edit]
[-] nl-cls-list
[edit]
[-] tune2fs
[edit]
[-] edquota
[edit]
[-] pure-certd
[edit]
[-] dnssec-revoke
[edit]
[-] xfs_fsr
[edit]
[-] exigrep
[edit]
[-] mke2fs
[edit]
[-] new-kernel-pkg
[edit]
[-] rpc.statd
[edit]
[-] ebtables-restore
[edit]
[-] nsec3hash
[edit]
[-] shutdown
[edit]
[-] mii-tool
[edit]
[-] audispd-zos-remote
[edit]
[-] atrun
[edit]
[-] sestatus
[edit]
[-] sushell
[edit]
[-] btrfs-zero-log
[edit]
[-] nstat
[edit]
[-] grub2-setpassword
[edit]
[-] newusers
[edit]
[-] setsebool
[edit]
[-] grub2-rpm-sort
[edit]
[-] dnssec-settime
[edit]
[-] iptunnel
[edit]
[-] luseradd
[edit]
[-] rtcwake
[edit]
[-] btrfs-map-logical
[edit]
[-] rdma
[edit]
[-] mkfs.ext2
[edit]
[-] webmitm
[edit]
[-] iptables-restore
[edit]
[-] ldattach
[edit]
[-] route
[edit]
[-] rpc.nfsd
[edit]
[-] iprinit
[edit]
[-] quotaoff
[edit]
[-] ctrlaltdel
[edit]
[-] create-cracklib-dict
[edit]
[-] hwclock
[edit]
[-] augenrules
[edit]
[-] named-checkconf
[edit]
[-] smartctl
[edit]
[-] iprupdate
[edit]
[-] installkernel
[edit]
[-] fsck.ext4
[edit]
[-] load_policy
[edit]
[-] convertquota
[edit]
[-] auditctl
[edit]
[-] luserdel
[edit]
[-] plipconfig
[edit]
[-] agetty
[edit]
[-] sshd
[edit]
[-] unix_update
[edit]
[-] sys-unconfig
[edit]
[-] bitninja-config
[edit]
[-] ping6
[edit]
[-] ifup
[edit]
[-] virt-what
[edit]
[-] dmstats
[edit]
[-] quotastats
[edit]
[-] pluginviewer
[edit]
[-] modsec-sdbm-util
[edit]
[-] cracklib-unpacker
[edit]
[-] kexec
[edit]
[-] crond
[edit]
[-] dnssec-keymgr
[edit]
[-] pure-ftpwho
[edit]
[-] selinux_restorecon
[edit]
[-] grpck
[edit]
[-] partx
[edit]
[-] fdformat
[edit]
[-] eximstats
[edit]
[-] plymouthd
[edit]
[-] slattach
[edit]
[-] genl
[edit]
[-] tcpslice
[edit]
[-] arpspoof
[edit]
[-] glibc_post_upgrade.x86_64
[edit]
[-] lgroupdel
[edit]
[-] iconvconfig.x86_64
[edit]
[-] sm-notify
[edit]
[-] dmsetup
[edit]
[-] msgsnarf
[edit]
[-] blkmapd
[edit]
[-] ip
[edit]
[-] getenforce
[edit]
[-] nologin
[edit]
[-] hardlink
[edit]
[-] pwck
[edit]
[-] authconfig-tui
[edit]
[-] btrfsck
[edit]
[-] safe_finger
[edit]
[-] grpconv
[edit]
[-] sln
[edit]
[-] wipefs
[edit]
[-] blockdev
[edit]
[-] testsaslauthd
[edit]
[-] sasldblistusers2
[edit]
[-] dsniff
[edit]
[-] dnssec-checkds
[edit]
[-] key.dns_resolver
[edit]
[-] htcacheclean
[edit]
[-] osd_login
[edit]
[-] lid
[edit]
[-] nl-class-delete
[edit]
[-] mkfs.ext4
[edit]
[-] alternatives
[edit]
[-] tcpd
[edit]
[-] httpd
[edit]
[-] tcpnice
[edit]
[-] mount.nfs4
[edit]
[-] mkfs.xfs
[edit]
[-] e2undo
[edit]
[-] sshow
[edit]
[-] selabel_lookup
[edit]
[-] chkconfig
[edit]
[-] selinuxenabled
[edit]
[-] xfs_repair
[edit]
[-] chcpu
[edit]
[-] grub2-reboot
[edit]
[-] nl-class-add
[edit]
[-] mailsnarf
[edit]
[-] ebtables
[edit]
[-] tuned-adm
[edit]
[-] runq
[edit]
[-] autrace
[edit]
[-] getsebool
[edit]
[-] cfdisk
[edit]
[-] rtacct
[edit]
[-] dhclient
[edit]
[-] sim_server
[edit]
[-] wpa_passphrase
[edit]
[-] rpcdebug
[edit]
[-] exim
[edit]
[-] cracklib-check
[edit]
[-] lshw
[edit]
[-] sshd-keygen
[edit]
[-] netreport
[edit]
[-] rpcinfo
[edit]
[-] xfs_io
[edit]
[-] ifcfg
[edit]
[-] grpunconv
[edit]
[-] xfs_ncheck
[edit]
[-] quot
[edit]
[-] fsck.minix
[edit]
[-] try-from
[edit]
[-] ifstat
[edit]
[-] plymouth-set-default-theme
[edit]
[-] t1libconfig
[edit]
[-] modprobe
[edit]
[-] mkfs
[edit]
[-] semanage
[edit]
[-] fixfiles
[edit]
[-] iprdump
[edit]
[-] lfd
[edit]
[-] pure-ftpd
[edit]
[-] lgroupmod
[edit]
[-] unix_chkpwd
[edit]
[-] btrfs-image
[edit]
[-] addgnupghome
[edit]
[-] dumpe2fs
[edit]
[-] partprobe
[edit]
[-] grub2-macbless
[edit]
[-] mkfs.btrfs
[edit]
[-] groupdel
[edit]
[-] mklost+found
[edit]
[-] snmpd
[edit]
[-] ifconfig
[edit]
[-] request-key
[edit]
[-] lsof
[edit]
[-] suphp
[edit]
[-] switch_root
[edit]
[-] grub2-get-kernel-settings
[edit]
[-] iptables-save
[edit]
[-] zramctl
[edit]
[-] named-compilezone
[edit]
[-] sendmail
[edit]
[-] grub2-ofpathname
[edit]
[-] parted
[edit]
[-] sysctl
[edit]
[-] fstrim
[edit]
[-] ip6tables
[edit]
[-] dmfilemapd
[edit]
[-] fsck.ext3
[edit]
[-] ether-wake
[edit]
[-] authconfig
[edit]
[-] urlsnarf
[edit]
[-] blkid
[edit]
[-] sefcontext_compile
[edit]
[-] swapon
[edit]
[-] resizepart
[edit]
[-] dnssec-importkey
[edit]
[-] exinext
[edit]
[-] zic
[edit]
[-] e2fsck
[edit]
[-] xfs_admin
[edit]
[-] vpddecode
[edit]
[-] imunify-notifier
[edit]
[-] mysqld
[edit]
[-] chgpasswd
[edit]
[-] halt
[edit]
[-] iprconfig
[edit]
[-] vipw
[edit]
[-] sshmitm
[edit]
[-] exim_checkaccess
[edit]
[-] losetup
[edit]
[-] xfs_info
[edit]
[-] arping
[edit]
[-] cracklib-format
[edit]
[-] exicyclog
[edit]
[-] whmapi1
[edit]
[-] bitninjacli
[edit]
[-] rtpr
[edit]
[-] modinfo
[edit]
[-] iprsos
[edit]
[-] accessdb
[edit]
[-] start-statd
[edit]
[-] nl-pktloc-lookup
[edit]
[-] xfs_estimate
[edit]
[-] tcpdmatch
[edit]
[-] swapoff
[edit]
[-] grub2-bios-setup
[edit]
[-] rmmod
[edit]
[-] genhostid
[edit]
[-] lnstat
[edit]
[-] ipmaddr
[edit]
[-] grub2-set-default
[edit]
[-] mii-diag
[edit]
[-] webspy
[edit]
[-] btrfs-select-super
[edit]
[-] ausearch
[edit]
[-] bridge
[edit]
[-] nl-qdisc-delete
[edit]
[-] xfs_logprint
[edit]
[-] wpa_cli
[edit]
[-] genhomedircon
[edit]
[-] dnssec-keyfromlabel
[edit]
[-] mountstats
[edit]
[-] nl-cls-add
[edit]
[-] mtr
[edit]
[-] selabel_lookup_best_match
[edit]
[-] arp-fingerprint
[edit]
[-] btrfs-convert
[edit]
[-] uuserver
[edit]
[-] cbq
[edit]
[-] getcap
[edit]
[-] pam_tally2
[edit]
[-] sw-engine-fpm
[edit]
[-] pam_timestamp_check
[edit]
[-] restorecon
[edit]
[-] mkfs.cramfs
[edit]
[-] runlevel
[edit]
[-] logrotate
[edit]
[-] exim_fixdb
[edit]
[-] audispd
[edit]
[-] avcstat
[edit]
[-] fuser
[edit]
[-] nfsidmap
[edit]
[-] pure-quotacheck
[edit]
[-] ip6tables-save
[edit]
[-] usernetctl
[edit]
[-] exim_tidydb
[edit]
[-] mount.nfs
[edit]
[-] audisp-remote
[edit]
[-] getpcaps
[edit]
[-] cacertdir_rehash
[edit]
[-] named
[edit]
[-] exim_dbmbuild
[edit]
[-] anacron
[edit]
[-] xfs_db
[edit]
[-] grub2-install
[edit]
[-] start-stop-daemon
[edit]
[-] pidof
[edit]
[-] paperconfig
[edit]
[-] irqbalance
[edit]
[-] dnssec-dsfromkey
[edit]
[-] check_forensic
[edit]
[-] fxload
[edit]
[-] pwhistory_helper
[edit]
[-] blkdiscard
[edit]
[-] lwresd
[edit]
[-] tc
[edit]
[-] setcap
[edit]
[-] reboot
[edit]
[-] xfs_mkfile
[edit]
[-] btrfstune
[edit]
[-] logsave
[edit]
[-] insmod
[edit]
[-] mkhomedir_helper
[edit]
[-] fsfreeze
[edit]
[-] badblocks
[edit]
[-] tmpwatch
[edit]
[-] groupadd
[edit]
[-] rotatelogs
[edit]
[-] mkdumprd
[edit]
[-] makedumpfile
[edit]
[-] matchpathcon
[edit]
[-] ipset
[edit]
[-] runuser
[edit]
[-] telinit
[edit]
[-] build-locale-archive
[edit]
[-] rdisc
[edit]
[-] packer
[edit]
[-] biosdevname
[edit]
[-] csf
[edit]
[-] nameif
[edit]
[-] xfs_metadump
[edit]
[-] fsck
[edit]
[-] whmapi0
[edit]
[-] routel
[edit]
[-] rpc.rquotad
[edit]
[-] umount.nfs
[edit]
[-] exiqsumm
[edit]
[-] sasl2-shared-mechlist
[edit]
[-] NetworkManager
[edit]
[-] udevadm
[edit]
[-] tcpkill
[edit]
[-] mkswap
[edit]
[-] fsck.cramfs
[edit]
[-] macof
[edit]
[-] pam_console_apply
[edit]
[-] clockdiff
[edit]
[-] clock
[edit]
[-] mysqld-debug
[edit]
[-] ip6tables-restore
[edit]
[-] nfsdcltrack
[edit]
[-] filesnarf
[edit]
[-] umount.nfs4
[edit]
[-] fdisk
[edit]
[-] xfs_bmap
[edit]
[-] useradd
[edit]
[-] nl-qdisc-list
[edit]
[-] devlink
[edit]
[-] xfs_growfs
[edit]
[-] ebtables-save
[edit]
[-] quotacheck
[edit]
[-] yum-complete-transaction
[edit]
[-] pdns_server
[edit]
[-] visudo
[edit]
[-] lgroupadd
[edit]
[-] aureport
[edit]
[-] chpasswd
[edit]
[-] filefrag
[edit]
[-] ifdown
[edit]
[-] grub2-sparc64-setup
[edit]
[-] btrfs-debug-tree
[edit]
[-] dhclient-script
[edit]
[-] nl-class-list
[edit]
[-] nfsiostat
[edit]
[-] pure-mrtginfo
[edit]
[-] faillock
[edit]
[-] nl-classid-lookup
[edit]
[-] adduser
[edit]
[-] named-checkzone
[edit]
[-] resize2fs
[edit]
[-] get-oui
[edit]
[-] get-iab
[edit]
[-] exim_dumpdb
[edit]
[-] nscd
[edit]
[-] ldconfig
[edit]
[-] setenforce
[edit]
[-] pivot_root
[edit]
[-] iconvconfig
[edit]
[-] lchage
[edit]
[-] exiqgrep
[edit]
[-] groupmod
[edit]
[-] snmptrapd
[edit]
[-] dnssec-signzone
[edit]
[-] smartd
[edit]
[-] dnsspoof
[edit]
[-] gss-server
[edit]
[-] rpcbind
[edit]
[-] xqmstats
[edit]
[-] selinuxdefcon
[edit]
[-] e2image
[edit]
[-] selinuxexeccon
[edit]
[-] rpc.gssd
[edit]
[-] semodule
[edit]
[-] xfs_mdrestore
[edit]
[-] sfdisk
[edit]
[-] cracklib-packer
[edit]
[-] lnewusers
[edit]
[-] exiwhat
[edit]
[-] grub2-mkconfig
[edit]
[-] tuned
[edit]
[-] ownership
[edit]
[-] lpasswd
[edit]
[-] install-info
[edit]
[-] e2label
[edit]
[-] dnssec-verify
[edit]
[-] apachectl
[edit]
[-] rtstat
[edit]
[-] ethtool
[edit]
[-] tracepath6
[edit]
[-] atd
[edit]
[-] iprdbg
[edit]
[-] userdel
[edit]
[-] applygnupgdefaults
[edit]
[-] whmlogin
[edit]
[-] arp
[edit]
[-] swaplabel
[edit]
[-] isc-hmac-fixup
[edit]
[-] weak-modules
[edit]
[-] mkfs.minix
[edit]
[-] exportfs
[edit]
[-] dnssec-keygen
[edit]
[-] xfs_quota
[edit]
[-] rpc.idmapd
[edit]
[-] nl-cls-delete
[edit]
[-] zdump
[edit]
[-] grubby
[edit]
[-] saslpasswd2
[edit]
[-] fsck.xfs
[edit]
[-] named-journalprint
[edit]
[-] delpart
[edit]
[-] vmcore-dmesg
[edit]
[-] consoletype
[edit]
[-] groupmems
[edit]
[-] killall5
[edit]
[-] update-alternatives
[edit]
[-] grub2-probe
[edit]
[-] setfiles
[edit]
[-] pure-uploadscript
[edit]
[-] arpd
[edit]
[-] repquota
[edit]
[-] btrfs-find-root
[edit]
[-] dmidecode
[edit]
[-] pwunconv
[edit]
[-] chroot
[edit]
[-] wpa_supplicant
[edit]
[-] ss
[edit]