This file is indexed.

/usr/share/ukolovnik/lib/string.php is in ukolovnik 1.5-3.

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
<?php
// vim: expandtab sw=4 ts=4 sts=4:

// This is string processing stuff for Ukolovnik
// Copyright © 2005 - 2016 Michal Čihař
// Published under GNU GPL version 3 or later

// Grab needed libraries
require_once('./lib/locale.php');

/**
 * Format date to string.
 */
function STRING_format_date($date) {
    return strftime(_('%d.%m.%Y, %H:%M'), $date);
}

/**
 * Make links in text clickable.
 */
function STRING_find_links($text) {
    return preg_replace('@((http|ftp|https)://[a-z0-9A-Z.,?&;/=+_~#$%\@:-]+)([^.,]|$)@', '<a href="\1">\1</a>\3', htmlspecialchars($text));
}

/**
 * Quoted printable encoding.
 */
function STRING_quoted_printable($input) {
    // If imap_8bit() is available, use it.
    if (function_exists('imap_8bit')) {
        return imap_8bit($input);
    }

    // Rather dumb replacment: just encode everything.
    $hex = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
                 'A', 'B', 'C', 'D', 'E', 'F');

    $output = '';
    $len = strlen($input);
    for ($i = 0; $i < $len; ++$i) {
        $c = substr($input, $i, 1);
        $dec = ord($c);
        $output .= '=' . $hex[floor($dec / 16)] . $hex[floor($dec % 16)];
        if (($i + 1) % 25 == 0) {
            $output .= "=\r\n";
        }
    }
    return $output;
}

/**
 * Converts timestamp to vCalendar format.
 */
function STRING_format_date_vcal($value) {
    return sprintf('%04d%02d%02dT%02d%02d%02d',
        date('Y', $value),
        date('n', $value),
        date('j', $value),
        date('G', $value),
        date('i', $value),
        date('s', $value));
}