This file is indexed.

/usr/share/php/kohana3.1/modules/unittest/bootstrap_all_modules.php is in libkohana3.1-mod-unittest-php 3.1.5-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
16
17
18
19
20
<?php

include_once('bootstrap.php');

// Enable all modules we can find
$modules_iterator = new DirectoryIterator(MODPATH);

$modules = array();

foreach ($modules_iterator as $module)
{
	if ($module->isDir())
	{
		$modules[$module->getFilename()] = MODPATH.$module->getFilename();
	}
}

Kohana::modules(Kohana::modules() + $modules);

unset ($modules_iterator, $modules, $module);