This file is indexed.

/usr/share/arc/ldap-monitor/mon-icons/icon_back.php is in nordugrid-arc-ldap-monitor 1.1.1-1.

This file is owned by root:root, with mode 0o644.

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
<?php
 
// Author: oxana.smirnova@hep.lu.se

header ("Content-type: image/png");
$im         = @imagecreate (39, 24);
$background = imagecolorallocate ($im, 255, 255, 255);
$tcol       = imagecolorallocate ($im, 98,98,98);
$trans      = imagecolortransparent($im,$background);
ImageRectangle($im, 1, 1, 36, 23, $tcol);
imagestring ($im, 3, 5, 5,  "BACK", $tcol);
imagepng ($im);
ImageDestroy($im);

?>