This file is indexed.

/etc/clamav-unofficial-sigs.conf is in clamav-unofficial-sigs 3.7.2-2.

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

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
# Please read this file for the configuration variable details & defaults:
# /usr/share/clamav-unofficial-sigs/conf.d/00-clamav-unofficial-sigs.conf

# Debian-specific configuration overrides are available here:
# /usr/share/clamav-unofficial-sigs/conf.d/01-debian.conf

# Source all the configuration files from upstream, Debian and elsewhere
etc=/etc/clamav-unofficial-sigs.conf.d/
usr=/usr/share/clamav-unofficial-sigs/conf.d/
for f in $(find $etc $usr -iname '*.conf' -printf '%f\n' 2>/dev/null | LC_ALL=C sort -u) ; do
	if [ -f "$etc$f" ]; then
		. "$etc$f"
	elif [ -s "$usr$f" ]; then
		. "$usr$f"
	fi
done

# If you would like to include medium and high risk databases, please read
# the comments in the upstream configuration file listed above. To modify the
# variables you would add something like this (the whitespace is important):
#
# ss_dbs="$ss_dbs something.ndb"
# si_dbs="$si_dbs somethingelse.ndb"

# Add your system configuration overrides here