This file is indexed.

/usr/share/arc/ldap-monitor/mon-icons/icon_spacer.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
<?php

// Author: oxana.smirnova@hep.lu.se

// Draws a 1x1 px spacer (PNG)

header ("Content-type: image/png");
$im      = @imagecreate(1,1);
$bgcolor = imagecolorallocate($im,255,255,255);
imagepng ($im);
ImageDestroy($im);

?>