This file is indexed.

/usr/share/arc/ldap-monitor/includes/toreload.inc 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
<?php

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

$toreload = $_SERVER['PHP_SELF']."?".@$_SERVER['QUERY_STRING'];
if ( !@$_SERVER['QUERY_STRING'] ) {
  $toreload = $_SERVER['PHP_SELF']."\" onClick=\"window.location.reload('true')";
} else {
  $dsltest  = substr($toreload,0,2);
  if ($dsltest == "//") $toreload=substr($toreload,1);
}
if ( !defined("TORELOAD") ) define("TORELOAD",$toreload);

?>