This file is indexed.

/usr/share/aide/config/aide/aide.settings.d/10_aide_sourceslist is in aide-common 0.16~a2.git20130520-2.

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
#!/bin/sh

SOURCESLIST=""
if [ -e "/etc/apt/sources.list" ]; then
  SOURCESLIST="/etc/apt/sources.list"
fi

for file in /etc/apt/sources.list.d/*; do
  if [ -e "$file" ]; then
    SOURCESLIST="$SOURCESLIST $file"
  fi
done