This file is indexed.

/usr/share/horde/mnemo/templates/data/import.inc is in php-horde-mnemo 4.2.12-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
<h1 class="header"><?php printf(_("Import Notes, Step %d"), (int)$import_step) ?></h1>

<form method="post" name="import_form" enctype="multipart/form-data" action="<?php echo Horde::url('data.php') ?>">
<input type="hidden" name="actionID" value="<?php echo htmlspecialchars($next_step) ?>" />
<input type="hidden" name="import_step" value="<?php echo (int)$import_step ?>" />
<div class="horde-content">
    <table cellspacing="0"><tr><td>
        <?php echo Horde::label('import_format', _("Select the format of the source file:")) ?><br />
        <select id="import_format" name="import_format">
            <option value="csv"><?php echo _("CSV") ?></option>
            <option value="vnote"><?php echo _("vNote") ?></option>
        </select><br />

<?php if (!$prefs->isLocked('default_notepad') && count($notepads = Mnemo::listNotepads(false, Horde_Perms::EDIT)) > 1): ?>
        <br /><?php echo Horde::label('notepad_target', _("Which Notepad should the notes be added to?")) ?><br />
        <select id="notepad_target" name="notepad_target">
        <?php
        $default = Mnemo::getDefaultNotepad(Horde_Perms::EDIT);
        foreach (array_keys($notepads) as $id) {
            $sel = ($id == $default) ? ' selected="selected"' : '';
            printf('<option value="%s"%s>%s</option>',
                   htmlspecialchars($id), $sel, htmlspecialchars(Mnemo::getLabel($notepads[$id]))) . "\n";
        } ?>
        </select><br />
<?php else: ?>
        <input type="hidden" name="notepad_target" value="<?php echo htmlspecialchars(Mnemo::getDefaultNotepad(Horde_Perms::EDIT)) ?>" />
<?php endif; ?>
        <br />

        <?php echo Horde::label('import_file', _("Select the file to import:")) ?><br />
        <input type="file" id="import_file" name="import_file" size="40" />
    </td></tr></table>
</div>

<div class="horde-form-buttons">
  <input type="submit" value="<?php echo _("Next") ?>" class="horde-default" />
</div>
</form>