⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
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
/
services
/
portal
/
View File Name :
cloud_search.php
* @category Horde * @license http://www.horde.org/licenses/lgpl LGPL-2 * @package Horde */ require_once __DIR__ . '/../../lib/Application.php'; Horde_Registry::appInit('horde', array('nologintaks' => true)); $tag = Horde_Util::getFormData('tag'); $results = array(); foreach ($registry->listAPIs() as $api) { if ($registry->hasMethod($api . '/listTagInfo')) { try { $results = array_merge( $results, $registry->{$api}->searchTags(array($tag), 10, 0, '', $registry->getAuth())); } catch (Horde_Exception $e) { Horde::log($e, 'ERR'); } } } echo '
' . sprintf(_("Results for %s"), '
' . htmlspecialchars($tag) . '
') . '
' . Horde::link('#', '', '', '', '$(\'cloudsearch\').hide();', '', '', array('style' => 'font-size:75%;')) . '(' . _("Hide Results") . ')
'; foreach ($results as $result) { echo '
' . (empty($result['icon']) ? Horde_Themes_Image::tag(Horde_Themes::img($result['app'] . '.png', array('app' => $result['app'])), array('alt' => $result['app'])) : '') . Horde::link($result['view_url'], '', '', '', '', '', '', array('style' => 'margin:4px')) . (empty($result['icon']) ? htmlspecialchars($result['title']) : '
') . '
' . $result['desc'] . '
'; } echo '
';