This file is indexed.

/usr/share/php/kohana3.1/system/config/credit_cards.php is in libkohana3.1-core-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
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
<?php defined('SYSPATH') OR die('No direct script access.');
/**
 * Credit card validation configuration.
 *
 * Options for each credit card:
 *  length - All the allowed card number lengths, in a comma separated string
 *  prefix - The digits the card needs to start with, in regex format
 *  luhn   - Enable or disable card number validation by the Luhn algorithm
 */
return array(

	'default' => array(
		'length' => '13,14,15,16,17,18,19',
		'prefix' => '',
		'luhn'   => TRUE,
	),

	'american express' => array(
		'length' => '15',
		'prefix' => '3[47]',
		'luhn'   => TRUE,
	),

	'diners club' => array(
		'length' => '14,16',
		'prefix' => '36|55|30[0-5]',
		'luhn'   => TRUE,
	),

	'discover' => array(
		'length' => '16',
		'prefix' => '6(?:5|011)',
		'luhn'   => TRUE,
	),

	'jcb' => array(
		'length' => '15,16',
		'prefix' => '3|1800|2131',
		'luhn'   => TRUE,
	),

	'maestro' => array(
		'length' => '16,18',
		'prefix' => '50(?:20|38)|6(?:304|759)',
		'luhn'   => TRUE,
	),

	'mastercard' => array(
		'length' => '16',
		'prefix' => '5[1-5]',
		'luhn'   => TRUE,
	),

	'visa' => array(
		'length' => '13,16',
		'prefix' => '4',
		'luhn'   => TRUE,
	),

);