This file is indexed.

/usr/share/aide/config/aide/aide.conf.d/31_aide_apt-file 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
13
14
15
16
#!/usr/bin/env bash

. "$UPAC_settingsd/10_aide_sourceslist"

cat $SOURCESLIST /dev/null | sed 's/ #.*$//' | while read deb uri dist comp; do
    PROTOCOL="$(echo $uri | sed 's|\([^:]\+\).*|\1|')"
    HOST="$(echo $uri | sed -e 's|.*//\([^/[:space:]]\+\).*|\1|' -e 's|\.|\\\.|g')"
    HOSTPATH="$(echo $uri | sed -e 's|.*//[^/[:space:]]\+/\?||;s|/$||;s|/|_|g;s|^\(.\+\)$|_\1|' -e 's|\.|\\\.|g')"
    if [ "$PROTOCOL" = "http" ] || [ "$PROTOCOL" = "ftp" ]; then
        for c in $comp; do
            echo "/var/cache/apt/apt-file/"${HOST//\./\\\.}${HOSTPATH}"_dists_"${dist//\//_}"_"${c}"_Contents-@@{ARCH}\.(gz|IndexDiff)$ VarFile"
        done
    fi
done

echo "/var/cache/apt/apt-file$ VarDir"