This file is indexed.

/usr/bin/LeakCheck is in leaktracer 2.4-5.

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/sh
if [ $# -lt 1 ] ; then
   echo "Usage: $0 <program [program parameters]>"
   exit 1
fi

# this looks in the same directory, this
# LeakCheck script resides; modify to your
# needs:
SHLIB=/usr/lib/leaktracer/LeakTracer.so
if [ ! -r $SHLIB ] ; then
    echo "$SHLIB not found"
    exit 1
fi

if [ -z "$LEAKTRACE_FILE" ] ; then
    rm -f leak.out
else
    rm -f "$LEAKTRACE_FILE"
fi
LD_PRELOAD=$SHLIB
export LD_PRELOAD
exec $@