This file is indexed.

/usr/lib/tiger/scripts/aide_run is in tiger 1:3.2.3-10.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#!/bin/sh
#
#     tiger - A UN*X security checking system
#     Copyright (C) 2003 Javier Fernandez-Sanguino
#
#    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, 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.
#
#     Please see the file `COPYING' for the complete copyright notice.
#
# aide_run - 04/24/2003
# unSpawn <unspawn@rootshell.be>
#
# Implement system integrity checks using aide.
# The script checks for the aide binary and configuration file
# location, if not found and no user-supplied vars are given, it will use
# the # default installation location. 
# The default database location is in the configuration file unless 
# overridden by the user. 
# It then runs Aide and parses/presents the result.
#
# Tested on RH-7.1 using non-custom Aide configuration
#
# 08/13/2003 - jfs - Respect the AIDE override (if done) in the site
#              configuration file.
# 08/09/2003 - jfs - Minor fixes and removed bashisms. Renamed messages to
#               either 'info', 'warn' or 'fail' and moved from Tiger_Run_AIDE
#               to Tiger_AIDE namespace.
# 05/05/2003 - jfs
#	Fixed integrity checks (commands)
#	Moved namespace of variables to Tiger_Aide
#	Added some more TODOs
#	Converted direct calls to grep, cut, tr to $GREP...
#
#
# TODO:
# - the config files for systems need to locate AIDE 
#
#-----------------------------------------------------------------------------
#
TigerInstallDir="/usr/lib/tiger"

#
# Set default base directory.
# Order or preference:
#      -B option
#      TIGERHOMEDIR environment variable
#      TigerInstallDir installed location
#
basedir=${TIGERHOMEDIR:=$TigerInstallDir}

for parm
do
   case $parm in
   -B) basedir=$2; break;;
   esac
done

#
# Verify that a config file exists there, and if it does
# source it.
#
[ ! -r $basedir/config ] && {
  echo "--ERROR-- [init002e] No 'config' file in \`$basedir'."
  exit 1
}

. $basedir/config

. $BASEDIR/initdefs

#
# If run in test mode (-t) this will verify that all required
# elements are set.
#
[ "$Tiger_TESTMODE" = 'Y' ] && {
  haveallcmds CUT GREP TR RM || exit 1
  haveallfiles BASEDIR WORKDIR || exit 1
  haveallvars TESTLINK HOSTNAME
  
  echo "--CONFIG-- [init003c] $0: Configuration ok..."
  exit 0
}

#------------------------------------------------------------------------
echo
echo "# Performing Aide filesystem integrity check..."
haveallcmds CUT GREP TR RM || exit 1
haveallfiles BASEDIR WORKDIR || exit 1

# TODO
# - Toggle verbose reporting using Tiger_AIDE_VERBOSE=1
# - User input custom aide location (pref from read-only media)
#   Proposed user input var (tigerrc): Tiger_AIDE_LOC_OVERRIDE
# - User input custom aide config(s) (pref from read-only media)
#   Proposed user input var (tigerrc): Tiger_AIDE_CFG_OVERRIDE
# - User input custom db (pref from read-only media)
#   Proposed user input var (tigerrc): Tiger_AIDE_DB_OVERRIDE
# - Expand with Integrit, Osiris and Prelude.

# For all of the below commands to fill in the gaps I'm thinking 
# "how portable is this?"...

# Aide binary location|override + default check
# Which, find, user-supplied var or tigexp's findcmd?:
if [ -z "$AIDE" ]
then
if [ -z "${Tiger_AIDE_LOC_OVERRIDE}" ]
then 
	AIDE=`which aide`
else 
	AIDE=${Tiger_AIDE_LOC_OVERRIDE}
fi
fi

# Aide binary default location, not using "eval" or "[ -x":
case "${#AIDE}" in 0) AIDE="/usr/local/bin/aide";; esac

# If AIDE is not available don't continue
haveallcmds AIDE || exit 1

# Aide configuration file location|override + default check
if [ -z "${Tiger_AIDE_CFG_OVERRIDE}" ]; 
then AIDE_CFG=`$AIDE -v 2>&1| $GREP -e "^CONFIG_FILE" | $CUT -d " " -f 3| $TR -d "\""`
else AIDE_CFG=${Tiger_AIDE_CFG_OVERRIDE}
fi

# Aide default configuration file, not using "eval" or "[ -z|-f":
case "${#AIDE_CFG}" in 0) AIDE_CFG="/usr/local/etc/aide.conf";; esac

# Aide database override, else this variable is taken from the configuration file of course
if [ ! -z "${Tiger_AIDE_DB_OVERRIDE}" ]; 
then AIDE_DB="--after=database=file:${Tiger_AIDE_DB_OVERRIDE}"
fi

# Run Aide using std conf, report to stdout
AIDE_RPT="$WORKDIR/aide.out.tmp.$$"
AIDE_ERR_RPT="$WORKDIR/aide.err.tmp.$$"
safe_temp "$AIDE_RPT" "$AIDE_ERR_RPT"
trap 'delete $AIDE_RPT $AIDE_ERR_RPT ; exit 1' 1 2 3 15

$AIDE --check --config=${AIDE_CFG} --report=stdout ${AIDE_DB} \
	2>${AIDE_ERR_RPT} > ${AIDE_RPT}
# TODO: calling AIDE should check the errors (if any)
# i.e. check $? and determine what happened

# Check temporary report for the changes signal:
$GREP ${AIDE_RPT} -qe "AIDE found differences"

case "$?" in
0)	# Summary
	AIDE_SUMMARY=`$GREP ${AIDE_RPT} -e "^Total number"`
	message INFO aide003i "" "Summary: ${AIDE_SUMMARY}"
	# Differentiate between added, changed and removed files
	for status in changed removed detected; do
		$GREP ${AIDE_RPT} -e "^${status}:" \
		| $CUT -d ":" -f 2 | while read result; do
		case "${status}" in
			changed) exp="aide003w";;
			removed) exp="aide004w";;
			added)   exp="aide005w";;
		esac
		message WARN ${exp} "" "Detected ${status} file ${result}"
		done
	done;;
1)	# No changes to report
	message INFO aide001i "" "No changes detected.";;
esac

delete ${AIDE_RPT} ${AIDE_ERR_RPT}

exit 0