This file is indexed.

/usr/bin/apg is in apg 2.2.3.dfsg.1-2.

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

CONFFILE="/etc/apg.conf"

# wrapper to give default parameters to apg if invoked without

if [ -z "$*" ]; then
  APG_PARM="-M NCL -a 0 -s -m 8 -x 12 -t"
  if [ -e "$CONFFILE" ]; then
    . $CONFFILE
  fi
  /usr/lib/apg/apg $APG_PARM
else
  /usr/lib/apg/apg $@
fi