This file is indexed.

/usr/share/bug/php5-pgsql/script is in php5-pgsql 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
#!/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
for dsoname in pgsql pdo_pgsql ; do
    inifile=${dsoname}.ini
    echo "**** /etc/php5/mods-available/$dsoname.ini ****" >&3
    grep -Ev "$MATCH" "/etc/php5/mods-available/$dsoname.ini" >&3
    echo "" >&3
done