This file is indexed.

/etc/kohana2/system/config/captcha.php is in libkohana2-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
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
 * @package  Core
 *
 * Captcha configuration is defined in groups which allows you to easily switch
 * between different Captcha settings for different forms on your website.
 * Note: all groups inherit and overwrite the default group.
 *
 * Group Options:
 *  style      - Captcha type, e.g. basic, alpha, word, math, riddle
 *  width      - Width of the Captcha image
 *  height     - Height of the Captcha image
 *  complexity - Difficulty level (0-10), usage depends on chosen style
 *  background - Path to background image file
 *  fontpath   - Path to font folder
 *  fonts      - Font files
 *  promote    - Valid response count threshold to promote user (FALSE to disable)
 */
$config['default'] = array
(
	'style'      => 'basic',
	'width'      => 150,
	'height'     => 50,
	'complexity' => 4,
	'background' => '',
	'fontpath'   => '/usr/share/fonts/truetype/ttf-dejavu/',
	'fonts'      => array('DejaVuSerif.ttf'),
	'promote'    => FALSE,
);