This file is indexed.

/usr/share/php/kohana2/modules/kodoc/views/kodoc/file_config.php is in libkohana2-modules-php 2.3.4-2.

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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php defined('SYSPATH') OR die('No direct access allowed.');

if ( ! empty($source)):
	list ($option, $value) = $source;

?>
<h4 class="option"><?php echo $option ?></h4>
<?php

endif;

?>
<div class="about">
<?php echo $about ?>
<?php

if ( ! empty($note)):
	foreach ($note as $n):

?>
<p class="note"><?php echo $n ?></p>
<?php

	endforeach;
endif;

?>
</div>
<?php

if ( ! empty($source)):

?>
<p class="value">Default value: <code><?php echo $value ?></code></p>
<?php

endif;

?>