This file is indexed.

/usr/share/sadms-2.0.15/_remote-sadms.sh is in sadms 2.0.15.repack-0ubuntu2.

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
24
25
26
27
28
#!/bin/bash
# bbou@ac-toulouse.fr
# 2007-05-22 16:37:56 
# _remote-sadms.sh

### P A R A M S

MYREMOTEHOST="$1"
MYREMOTEUSER="$2"
MYREMOTEDIR="$3"
if [ "${MYREMOTEHOST}" == "" ]; then
	echo "no remote host" >&2
fi
[ "${MYREMOTEUSER}" != "" ] || MYREMOTEUSER="root"
[ "${MYREMOTEDIR}" != "" ] || MYREMOTEDIR="/opt/sadms"

### I N C L U D E

. ./_include.sh

### S T A R T

ssh -l ${MYREMOTEUSER} ${MYREMOTEHOST} <<EOF
cd ${MYREMOTEDIR}/
echo "sadms executes as/on/at `whoami`@`hostname`:`pwd`"
echo "with graphical interface (display) running remotely"
./sadms.py
EOF