This file is indexed.

/usr/share/php/kohana3.2/modules/userguide/views/userguide/api/toc.php is in libkohana3.2-mod-userguide-php 3.2.2-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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<h1><?php echo 'Available Classes' ?></h1>

<label>Filter:</label>
<input type="text" id="kodoc-api-filter-box" />

<script type="text/javascript">
(function($) {
	$.fn.extend({
		api_filter: function(api_container_selector){
			var $api_container = $(api_container_selector);
			var $this = this;

			if ($api_container.length) {
				var $classes = $('.class', $api_container);
				var $methods = $('.methods li', $classes);
				var text = $methods.map(function(){ return $(this).text(); });
				var timeout = null;

				this.keyup(function(){
					clearTimeout(timeout);
					timeout = setTimeout(filter_content, 300);
				});

				filter_content();
			}

			function filter_content(){
				var search = $this.val();
				var search_regex = new RegExp(search,'gi');

				if (search == '') {
					$methods.show();
					$classes.show();
				} else {
					$classes.hide();
					$methods.hide();

					text.each(function(i){
						if (this.match(search_regex)) {
							$($methods[i]).show().closest('.class').show();
						}
					});
				}
			}

			return this;
		}
	});

	$(document).ready(function(){
		$('#kodoc-api-filter-box').api_filter('#kodoc-body').focus();
	});
})(jQuery);
</script>

<div class="class-list">

	<?php foreach ($classes as $class => $methods): $link = $route->uri(array('class' => $class)) ?>
	<div class="class <?php echo Text::alternate('left', 'right') ?>">
		<h2><?php echo HTML::anchor($link, $class, NULL, NULL, TRUE) ?></h2>
		<ul class="methods">
		<?php foreach ($methods as $method): ?>
			<li><?php echo HTML::anchor("{$link}#{$method}", "{$class}::{$method}", NULL, NULL, TRUE) ?></li>
		<?php endforeach ?>
		</ul>
	</div>
	<?php endforeach ?>

</div>