This file is indexed.

/usr/bin/debroster is in debroster 1.17.

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

DIMENSIONS=$(xdpyinfo -ext all | sed -ne 's/  dimensions: *\([^ ]*\).*/\1/p')

#Performance - assume the debian location, and if this fails try looking for it.

if [ -x /usr/bin/Eterm ] ; then
    ETERM_BIN=/usr/bin/Eterm
else
    ETERM_BIN=$(find /usr -name Eterm -print | grep bin)
fi

if [ -x "$ETERM_BIN" ] ; then
#	$ETERM_BIN -g $DIMENSIONS+0+0 -e ./eterm.sh
	$ETERM_BIN  -n 'Debian - Is your distribution this big?' -P /usr/share/debroster/openlogo1.jpg@:s -f black -F '-*-courier-*-*-*-*-*-200-*-*-*-*-iso8859-1'  -c white -e /usr/share/debroster/dr.sh
elif [ -x /usr/X11R6/bin/xterm ]; then
#    echo no eterm
    /usr/X11R6/bin/xterm +bc -cr white +j -ms white +s +sb +si -wf -title 'Debian - Is your distribution this big?' -fn '-*-courier-*-*-*-*-*-200-*-*-*-*-iso8859-1' -e /usr/share/debroster/dr.sh
else
    echo "No valid terminal application!!"
fi

exit 0