This file is indexed.

/usr/lib/x86_64-linux-gnu/fis-gtm/V6.3-000A_x86_64/plugin/gtmcrypt/show_install_config.sh is in fis-gtm-6.3-000a 6.3-000A-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
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/sh
#################################################################
#								#
#	Copyright 2012 Fidelity Information Services, Inc	#
#								#
#	This source code contains the intellectual property	#
#	of its copyright holder(s), and is made available	#
#	under a license.  If you do not know the terms of	#
#	the license, please stop and do not read further.	#
#								#
#################################################################

if [ "x" = x"$gtm_dist" ]; then
	echo "Environment variable - gtm_dist not defined."
	exit 1
fi

if [ ! -d $gtm_dist/plugin ]; then
	echo "Unable to locate $gtm_dist/plugin. Exiting..."
	exit 1
fi

platform_name=`uname -s`
ext=".so"
if [ "OS/390" = $platform_name ]; then ext=".dll" ; fi

base_libname="libgtmcrypt"
generic_libname=$base_libname$ext
if [ "x" = x"$gtm_crypt_plugin" ]; then
	shared_object="$gtm_dist/plugin/$generic_libname"
	txt="symbolic link pointed by $gtm_dist/plugin/$generic_libname"
else
	shared_object="$gtm_dist/plugin/$gtm_crypt_plugin"
	txt='$gtm_crypt_plugin'
fi
if [ ! -f $shared_object ] ; then
	echo "Cannot find $shared_object. Exiting..."
	exit 1
fi
# Obtain the symbolic link (if any)
link=`ls -l $shared_object | awk '{print $NF}'`
# Get rid of the prefix (any path associated with the link) and the extension
basepart=`echo $link | awk -F/ '{print $NF}' | sed 's/'"$ext"'$//'`
# Resulting $basepart should be of form -- A_B_C
encryption_lib=`echo $basepart | cut -f2 -d'_'`
algorithm=`echo $basepart | cut -f3 -d'_'`
if [ "$encryption_lib" = "$algorithm" -o "" = "$algorithm" ] ; then
	echo "Unable to determine encryption library name or algorithm. Please ensure that $txt has the correct format. Exiting..."
	exit 1
fi

echo "ENCRYPTION_LIB = $encryption_lib"
echo "ALGORITHM = $algorithm"
exit 0