This file is indexed.

/usr/share/bug/php5-cli/script is in php5-cli 5.5.9+dfsg-1ubuntu4.

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

MATCH="^[[:space:]]*($|;)"

echo "==== Additional PHP 5 information ====" >&3
echo "" >&3
echo "++++ PHP 5 SAPI (php5query -S): ++++" >&3
/usr/sbin/php5query -S >&3
echo "" >&3
echo "++++ PHP 5 Extensions (php5query -M -v): ++++" >&3
/usr/sbin/php5query -M -v >&3
echo "" >&3

echo "++++ Configuration files: ++++" >&3
"**** /etc/php5/cli/php.ini ****" >&3
grep -Ev "$MATCH" /etc/php5/cli/php.ini >&3
echo "" >&3
find /etc/php5/cli/conf.d/ -name '*.ini' | \
while read CONF; do
    echo "**** $CONF ****" >&3
    grep -Ev "$MATCH" "$CONF" >&3
    echo "" >&3
done