This file is indexed.

/usr/share/backup-manager/contrib/sanitize.sh is in backup-manager 0.7.10.1-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

if [[ -z "$1" ]]; then
	echo "No file given"
	exit 1
fi

lib="/usr/share/backup-manager"

source $lib/gettext.sh
source $lib/dialog.sh
source $lib/logger.sh
source "$1"
source $lib/sanitize.sh

exit 0