This file is indexed.

/usr/share/red5/red5-shutdown.sh is in red5-server 1.0~svn4374-1.

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

if [ -z "$RED5_HOME" ]; then 
  export RED5_HOME=`pwd`; 
fi

# JMX options
export JAVA_OPTS="-Djavax.net.ssl.keyStore=$RED5_HOME/conf/keystore.jmx -Djavax.net.ssl.keyStorePassword=password"

# port, username, password
export RED5_OPTS="9980 red5user changeme"
export RED5_MAINCLASS=org.red5.server.Shutdown
exec $RED5_HOME/red5.sh